Tagged Questions
3
votes
1answer
30 views
Change colors in Gnuplot like the ones from the gallery
I used Google and searched on stackexchange, stackoverflow.
How can I reproduce the plots from
http://gnuplot.sourceforge.net/demo/simple.html
with the colors from there?
Using the given script
# ...
1
vote
1answer
293 views
In gnuplot how can I set rgb colour from 3 columns?
I have 3 'columns' in my data file that specify the red, green, and blue fractions:
red green blue
0.263 0.914 0.086
0.263 0.914 0.086
0.263 0.914 0.086
1.000 0.571 0.429
1.000 ...
1
vote
1answer
54 views
Linecolor (not so) variable
I'm trying to present data in a boxplot with a few additions.
On top of the boxplot, i want to also print all the data points, since there aren't that many.
There will be many boxplots side by side, ...
2
votes
2answers
97 views
How do I plot 2-dimensional data in circles where radius representing the 3rd column and the color representing the 4th column?
Here is an example data set.
#x y r c
1 2 10 2
3 1 2 4
3 2 1 5
I can plot with circle's radius representing the 3rd column OR with color representing the 3rd column. However, I don't know how to ...
0
votes
0answers
175 views
GNU Plot inconsistent user defined colors in column-stacked histogram
I am trying to create a column-stacked histogram and because there are more than 9 different caterogies I would like to use user defined colors for the histrogram. When I don't use user defined ...
1
vote
1answer
221 views
Gnuplot : Coloring background according to data range
I plot a data file containing 2 columns as a line. I also have data ranges for the x axis that I would like to use to color the background.
For example, in the data range from 41 to 70, I would like ...
0
votes
2answers
1k views
how to set label and line the same color in gnuplot
Very simple stuff. I want a function, say function f, to be plotted with a particular color. I also want a piece of label saying "function f color" which is also displayed in that color.
I am trying ...
1
vote
1answer
273 views
gnuplot: how to draw boxes with specific width, height and color
I would like to draw 60 boxes next to each other (not overlapping). Width should be according to specific column, height should be according to specific column, as well as color ant title. As titles I ...
2
votes
2answers
4k views
Vary point color in GNUPLOT based on value of one column
I need to vary the point color for a row of values based on the color in one column. For the purposes of this we can say the values are x in the first column, y in the second and the color in the ...
2
votes
1answer
1k views
gnuplot point color wrong
In this example, the point color(blue) of the 3. plot differs from the test output(green) - why is that? (my default terminal is aqua, but it is the same with e.g. png)
plot [0:4]\
'-' title ...
1
vote
3answers
4k views
gnuplot background color
I used to set the background color similar to this post: How do I change the background color in gnuplot?
However, with the newest (4.5) version, I am told that this color selection is obsolete. ...
2
votes
1answer
3k views
Gnuplot: Variable colors (and linewidths) for 2D-Vector plot
I am trying to create a 2D Vector-Plot with variable colors (and line-widths) in gnuplot (version 4.4) . I have looked at the examples for points:
splot "vectors.dat" u 1:2:3:4:(rgb($5,$6,$7)) w ...