Basic Scripting with Awk and Gnuplot
cyberchris.xyz
Basic Scripting with Awk and Gnuplot
1–10 of 11 posts
Re: Basic Scripting with Awk and Gnuplot
#2Very succinct quickstart guide.
Re: Basic Scripting with Awk and Gnuplot
#3Can anyone point to some pretty styles they've come across?
Here is one I used a while ago: Pretty Plots with Gnuplot [0]
[0]: https://edg.uchicago.edu/tutorials/pretty_plots_with_gnuplot...
Re: Basic Scripting with Awk and Gnuplot
#4 awk '/Time/{printf("%d %s ", ++j, $3)} ...Re: Basic Scripting with Awk and Gnuplot
#5Re: Basic Scripting with Awk and Gnuplot
#6I want to use gnuplot more, but I generally find myself spending too much time messing with the plot styles to get something I sort of like. Can anyone point to some pretty styles they've come across? Here is one I used a while ago: Pretty Plots with Gnuplot [0] [0]: https://edg.uchicago.edu/tutorials/pretty_plots_with_gnuplot...
Re: Basic Scripting with Awk and Gnuplot
#7I want to use gnuplot more, but I generally find myself spending too much time messing with the plot styles to get something I sort of like. Can anyone point to some pretty styles they've come across? Here is one I used a while ago: Pretty Plots with Gnuplot [0] [0]: https://edg.uchicago.edu/tutorials/pretty_plots_with_gnuplot...
Re: Basic Scripting with Awk and Gnuplot
#8Re: Basic Scripting with Awk and Gnuplot
#9There is no need to initialize variables with -v. You could just do: awk '/Time/{printf("%d %s ", ++j, $3)} ...
I find it best to restrict the use -v to injecting environment variables into my awk scripts.
Re: Basic Scripting with Awk and Gnuplot
#10I want to use gnuplot more, but I generally find myself spending too much time messing with the plot styles to get something I sort of like. Can anyone point to some pretty styles they've come across? Here is one I used a while ago: Pretty Plots with Gnuplot [0] [0]: https://edg.uchicago.edu/tutorials/pretty_plots_with_gnuplot...