-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
531 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
set style data lines | ||
set datafile separator comma | ||
set datafile columnheaders | ||
|
||
set key autotitle columnheader | ||
set title "string construction from string slice (non-borrowing)" | ||
set ylabel "time (nanoseconds)" | ||
set xlabel "string length (bytes)" | ||
set key outside right top vertical box | ||
set logscale x 2 | ||
|
||
set output "chart.png" | ||
set terminal pngcairo size 1200,800 noenhanced font "Liberation Sans,14" linewidth 1.5 | ||
|
||
plot for [i=2:*] 'data.csv' using 1:i with linespoints | ||
|
||
set output "chart.svg" | ||
set terminal svg size 1200,800 noenhanced font "Arial,Helvetica,14" linewidth 1.5 background rgb "white" | ||
replot |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.