Search Archives
Search tips
from:Name
Search by author name, e.g. from:Duncan Murdoch
"exact phrase"
Match an exact phrase
word1 word2
Match messages containing both words
Date range
Use the date pickers to filter results to a time period
Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.
An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20131223/4b6634fa/attachment.pl>
An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20140319/d09891d1/attachment.pl>
see: ?par Does running par(mfrow=c(4,3)) do the job? On Wed, Apr 16, 2014 at 7:33 AM, eliza botto <eliza_botto at hotmail.com> wrote: > Dear useRs, > I drew 12 separate raster maps. I want to...
Use geom_jitter() instead of geom_point On Mon, Sep 8, 2014 at 12:37 PM, Tom Wright <tom at maladmin.com> wrote: > ggplot(data,aes(x = z1, y = x, fill=x2)) + > geom_boxplot() + > geom_point(alpha=0.5, > position...
David's almost works except it catches the "MONTH" column, just add an empty metacharacter tho. c("DAY", "MONTH", "YEAR", "SA_TUES", "SA_MON", "SU_WED", "CH_TUES", "CH_WED", "CH_MON", "AR_TUES", "AR_WED", "AR_MON", "SA_THUR...
Does this resemble what you're after? library(reshape2) tst <- melt(testdataset) library(ggplot2) ggplot(tst, aes(x=Var1, y=Var2, fill=value)) + geom_tile() + scale_fill_gradient2(low="white", high="white", mid=scales::muted("blue"), midpoint=0.6148377) On...
The problem is that you are not actually 'mapping' any variables to the fill and colour aestethics so ggplot wont produce legends for those. I'm not sure ggplots are appropiate for what you're trying to do here but...
You missed a few things when copying the example, try ggplot(testdataset2, aes(y=factor(Var2),x=value)) + stat_density(aes(fill=..density..), position="identity", geom="tile") + scale_fill_gradientn(colours=brewer.pal(n=8, name="PuBuGn")) needed to add...
Can't find what you're looking for? Try searching with Google .