Skip to content

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.

8 results for “from:Federico Lasa”

Knitr, ggplot and consistent fonts
Federico Lasa · Dec 23, 2013 · r-help

An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20131223/4b6634fa/attachment.pl>

Does a survival probability(the probability not experiencing an event) have to be non-increasing?
Federico Lasa · Mar 19, 2014 · r-help

An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20140319/d09891d1/attachment.pl>

multiple plots on same sheet in R
Federico Lasa · Apr 16, 2014 · r-help

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...

ggplot - boxplot and points split by two factors
Federico Lasa · Sep 8, 2014 · r-help

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...

grepping out columns
Federico Lasa · Feb 18, 2015 · r-help

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...

Help with continuous color plot
Federico Lasa · Sep 24, 2014 · r-help

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...

Legend in ggplot2
Federico Lasa · Aug 7, 2014 · r-help

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...

Help with continuous color plot
Federico Lasa · Sep 24, 2014 · r-help

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 .