# automobile_input.txt # set term png set output "automobile.png" # # Fields in each record are separated by commas. # set datafile separator "," set title "Price versus Curb weight" set xlabel "Price in dollars" set ylabel "Curb weight in pounds" set grid set timestamp plot 'automobile.txt' using 26:14 quit