|
From: Gavin B. <gav...@ya...> - 2005-03-01 08:59:18
|
Hi, I can't see why it wouldn't work the same way - I usually just write plot 'data.dat' u 1:2 w l lt 1 lw 3 to plot the data in the file data.dat using the first two columns with lines, line type 1 and line width 3. Is your data still coming out with line width 1? It could be the terminal settings? Try it using different terminals, (e.g., if your on a unix or linux) set term post set output 'out.ps' plot 'data.dat' u 1:2 w l lt 1 lw 3 set term x11 and then view the postscript file. It should be fine.... --- gnu...@li... wrote: > Send Gnuplot-info mailing list submissions to > gnu...@li... > > To subscribe or unsubscribe via the World Wide Web, > visit > > https://lists.sourceforge.net/lists/listinfo/gnuplot-info > or, via email, send a message with subject or body > 'help' to > gnu...@li... > Hello, > I am plotting some data with gnuplot the following > way: > gnuplot> plot 'file.txt' using 1:2 with line 1 > > I'd like to change the style of the line, but I > don't succeed. It seems > that the variable "linewidth" or "lw" does not exist > for the lines when I > am plotting data. > I noticed that it was working for curves, for > example in the following > example: > gnuplot> plot sin(x) with lines lw 3 > __________________________________ Do you Yahoo!? Yahoo! Mail - 250MB free storage. Do more. Manage less. http://info.mail.yahoo.com/mail_250 |