Tagged Questions
2
votes
2answers
61 views
Can colors and shape be changed on a combined line and point plot while maintaining one legend per graph?
Using the following data frame:
day <- gl(8,1,48,labels=c("Mon","Tues","Wed","Thurs","Fri","Sat","Sun","Avg"))
day <- factor(day, ...
1
vote
1answer
40 views
Can a portion of the background in ggplot be changed to a different color?
Using the following data frame d:
day <- gl(8,1,24,labels=c("Mon","Tues","Wed","Thurs","Fri","Sat","Sun","Avg"))
day <- factor(day, level=c("Mon","Tues","Wed","Thurs","Fri","Sat","Sun","Avg"))
...
0
votes
1answer
142 views
Fill and border colour in geom_point (scale_colour_manual) in ggplot
I'm doing an scatter plot using ggplot. I would like to have points with a particular colour and fill (in plot, colour="blue", fill="cyan4", for ex.) but I can't find how. What I have to this point ...
0
votes
1answer
55 views
Smooth colors in geom_line
Using ggplot2, I would like color lines "smoothly" in a plot where I have only few datapoints. As is, the scales I tried (e.g. scale_color_gradient2) do not seem to interpolate colors, but instead ...
0
votes
1answer
70 views
how to manually assign more than 14 colors in ggplot?
I am trying to plot the graph that shows change in value indicated by color under two scenarios. I looked several postings in the forum but could not exactly figured out. Some of the methods I have ...
1
vote
1answer
177 views
ggplot2: How to specify multiple fill colors for points that are connected by lines of different colors
I am new to ggplot2. I would like to create a line plot that has points on them where the points are filled with different colors than the lines (see the plot below).
Suppose the dataset I am ...
0
votes
0answers
38 views
ggplot2 partially coloured text elements
I know it is possible to have partial italics in ggplot2-text-elements using something like
scale_x_discrete("Location", labels=expression(Quebec, italic(Mississippi)))
(see Partial italics, ...
1
vote
1answer
114 views
How to have multiple color scales into one plot R [duplicate]
I have three data series which are composed of :
X (float)
Y (float)
S (float)
Class (discrete values)
All three data series are sharing the same X coordinate but every other component is ...
3
votes
2answers
155 views
Trying to apply color gradient on histogram in ggplot
I am floundering with colors in ggplot. I am trying to apply a color gradient based on the rank column below. I am pretty sure this is a discrepancy between color and fill or discrete and continuous ...
3
votes
1answer
124 views
Plotting Luv colors; replicating figure 6.11 from the ggplot2 book
I am trying to replicate figure 6.11 from Hadley Wickham's ggplot2 book, which plots R colors in Luv space; the colors of points represent themselves, and no legend is necessary.
Here are two ...
2
votes
1answer
500 views
ggplot scale color gradient to range outside of data range
I am looking for a way to stretch a color gradient between two values and label the legend, regardless of the range of data values in the dataset. Essentially, is there a functional equivalent to ...
2
votes
1answer
191 views
Generate pairs of bright and dark colours for ggplot2
brewer.pal(n=8,name="Paired")
Can create up to eight colour pairs, but only few of these colours are good for printing.
Is there a more flexible function that will generate a dark pendant?
The ...
6
votes
1answer
129 views
Recommend a scale colour for 13 or more categories
The default scale for ggplot2 for 13 or more colours does not provide a high degree of visual differentiation.
In addition, the longest of the brewer scales ends at 12 categories (Set3).
Can you ...
1
vote
0answers
87 views
ggplot2 change colours of flipped bars after producing plots
Using loops, I create a series of flipped barcharts, that look like the one made here. After creating them, I would like to give significantly different bars a different colour. therefore I need to ...
0
votes
0answers
42 views
ggplot2 - how to get colour codes of standard colours used? [duplicate]
Possible Duplicate:
Emulate ggplot2 default color palette
I used ggplot for some plots used in my thesis and for other figures I would like to use the same colors used by ggplot as a ...
4
votes
2answers
162 views
How can I fill the background with a color scale in function of a lineal model?
I'm analysing an example of datavis in "The Functional Art " of Alberto Cairo (I recomend to you)
In that book, there are this example
And I try in R. In the bottom left graph (scatter plot)
I ...
2
votes
1answer
402 views
ggplot2 and RcolorBrewer with qualitative palettes of 2 values
I used RColorBrewer to set the colors in ggplot2. I wrote a function and on the same chart I superimpose from 1 to 4 lines. In order to set a color I use:
scale_color_brewer(type="qual", ...
0
votes
1answer
96 views
change textposition of colourbar in scale_color_discrete
I generate the legend in my ggplot2 plot with
scale_colour_discrete(name=textCF)
I like that i can see which colour belongs to which value, but it consumes to much space in the plot.
I tried ...
1
vote
1answer
208 views
Categorizing samples in R, and plotting them in different colors
I am new to learning R. I wanted to know how I can asssign a categorical value to observations I have read in as a dataframe. For eg I have data for m variables from n samples and I want to assign ...
0
votes
1answer
407 views
ggplot2 using scale_colour_manual access default colors?
I am using scale_colour_manual to specify the possible colors I need. However, if I choose red I get the eye-burning red color rather than the milder ggplot2 default red that would appear if I didn't ...
1
vote
1answer
191 views
Different colours for different facet_grids
I am having a hard time getting different colours for my 2 different facet_grids.
Here is my simple example:
df <- data.frame(x = rep(1:20, each=20), y= rep(1:20, 20),
val = ...
3
votes
2answers
342 views
ggplot2: Thresholds for scale_alpha()
Is it possible to specify thresholds for color-scales?
Look at this example:
xy <- expand.grid(x=1:20,y=1:20)
xyd <- data.frame(xy,z=runif(400),a=rowSums(xy)/40)
g <- ggplot(xyd, aes(x=x, ...
3
votes
1answer
922 views
Plot with conditional colors based on values in R
I want to plot a graph with different colors based on values. I wrote the below code,
np_graph <- data.frame(C1 = -5:5, C2 = -5:5)
x=np_graph2$C1
y=np_graph2$C2
plot(x,y,xlab="PC1",ylab="PC2")
...
2
votes
1answer
605 views
using two scale colour gradients on one ggplot
I would like to combine a colour scale gradient for the points on a scatter plot together with a colour scale gradient for some text that goes on the plot. I can do them separately as shown in my ...
4
votes
1answer
1k views
Color Gradients With ggplot
I have some geographic x,y,z data which I plot as follows
p<-ggplot(aes(x=x,y=y,fill=z),data=my_data)
I then apply a gradient
p<-p + scale_fill_gradient(low = "pink", high = "green")
And ...
5
votes
1answer
207 views
asymmetric color distribution in scale_gradient2?
Changing the upper limits for scale_fill_gradient2 also effects the colorscaling for values < 0 as the color distribution around 0 seems to be always symmetrically, is there a way to get a ...
1
vote
1answer
248 views
How can I create a colormap with a fixed color for 0 in R / ggplot
I am producing heatmaps of measurement using ggplot2. The data contains positive and negative values and I use the rainbow() palette for coloring.
I have different data sets and would like to scale ...
2
votes
3answers
530 views
How to add vertical lines to ggplot boxplots in R
I am plotting boxplots from this data:
MY_LABEL MY_REAL MY_CATEGORY
1 [POS] .56 POS
1 [POS] .57 POS
1 [POS] .37 POS
2 [POS] .51 ...
2
votes
1answer
152 views
Multiple colour-scaling with lower level plots of ggplot2
I would like to achieve a different colour gradient every time I add another a geom_line() to my main plot, each time with 'colour' as the scale.
Here is a data frame just as an example:
df <- ...
2
votes
1answer
933 views
R heatmap with diverging colour palette
I am trying to create a simple heatmap in R, using a diverging colour palette. I want to use a gradient so that all numbers below a threshold N are designated a color (say purple), and all numbers ...
8
votes
1answer
5k views
ggplot2: add color to boxplot - “Continuous value supplied to discrete scale” error
I am new to ggplot2. In fact, I only discovered it last week and I haven't quite figured out yet how to use aesthetics and scales etc. There is probably a very easy solution to my problem but I ...
4
votes
1answer
1k views
How to assign color scale to a variable in a 3D scatter plot?
I'm a beginner in R and needs a bit of help for my scripting.
I managed to generate scale color gradient using library(ggplot2) on my 2D plots as follows;
z <- c(data$conf)
d <- qplot(x, y, ...
0
votes
1answer
365 views
How do I use scale_colour_manual?
Does anyone know any bugs/tricks when using scale_colour_manual to set colors to predefined settings based on HEX color codes contained in your data frame?
I have been trying to to use the following ...
1
vote
1answer
771 views
Color ggplot points based on defined color codes
Is it possible to used ggplot to color points based on predefinded standard color codes contained in the data frame?
Below is some sample data and code to help articulate my question.
tick <- ...
1
vote
2answers
585 views
R color palettes for many data classes
Are there any good packages for colour palettes in R that can handle many data classes? I have 16 sequential data classes. I tried RColorBrewer but it has a max of 9 data classes, I also tried ...
1
vote
2answers
186 views
How can I use different color palettes for different layers in ggplot2?
Is it possible to plot two sets of data on the same plot, but use different color palettes for each set?
testdf <- data.frame( x = rnorm(100),
y1 = rnorm(100, mean = 0, sd = 1), ...
3
votes
1answer
1k views
Change the colour palette in histogram
I am trying to change the colours of my histogram, but not sure how to do it, that's my code:
qplot(user, count, data=count_group, geom="histogram", fill=group,
xlab = "users", ...
5
votes
1answer
464 views
Labelling ggdendro leaves in multiple colors
I have a situation in which i am plotting a dendrogram with data points that come with class labels.
I wish to see that agglomerative clustering groups those with the same label together. Color ...
6
votes
3answers
3k views
creating a more continuous color palette in r, ggplot2, lattice, or latticeExtra
Warning.... very novice question follows:
I am trying to plot a fairly regular distribution of several thousand (X,Y) points each associated with a value, let's call Z, which varies very irregularly ...
0
votes
1answer
997 views
Custom ggplot output (colour, appearence, etc)
I am quite new to ggplot2, so forgive me if this post is too stupid.
I used the following code to plot the data, but I am not able to get the style that I need for publication.
In the output, I ...
3
votes
1answer
541 views
R/ggplot2: how to match legend and plot colors in overlapping area plots?
I have two area plots (call them 'blue' and 'green') where the green is mostly under the blue plot, but on a very few points, it is higher than the blue plot. I want to use transparency say alpha = ...
3
votes
2answers
406 views
Extract color information from ggplot2?
Using this dummy code saved in a file named foo.txt...
COG,station1,station2,station3,station4,station5
COG000Z,0.019393497,0.183122497,0.089911227,0.283250444,0.074110521
...




