In article
<49f7adb1-dd7c-4d36-a49b-2be4bb976f54@[EMAIL PROTECTED]
>,
G <gmonaie@[EMAIL PROTECTED]
> wrote:
>This same question was posted in 2001, but I'm having the same issue
>now and was wondering if new functionality has been introduced.
>
>"I think that the easiest way to explain my problem is to say that I'd
>like to do:
>
>plot 'some-file.dat' u 1:2 w linespoints pointsize ($3)
>
>Meaning that I get the markers rescaled depending on a column value...
>Is there any way to obtain this? Or I should try to play with
>xyerrorbars to "approximate" the effect?"
>
>
>basically I thought I could do:
>
>plot 'data' u 1:2:3 w lp ps variable
>
>but gnuplot throws back an error msg saying there are too many
>specifications for this style, linespoints. any way to do this?
Yes. Plot it twice, once with lines and once with points:
plot 'data' u 1:2 w lines, '' u 1:2:3 w point ps variable
--
Ethan A Merritt


|