Hi,
Firstly, apologies as I have posted this on community.rstudio.com too.
I want to optimise a Box-Cox transformation on columns of a matrix (ie, a
unique lambda for each column). So I wrote a function that includes the call to
MASS::boxcox in order that it can be applied to each column easil
ry function supplied, defaulting to `mean_se()`
Warning messages:
1: Ignoring unknown parameters: fun.y
2: Removed 24 rows containing non-finite values (stat_summary).
3: Removed 24 rows containing non-finite values (stat_summary).
4: Removed 24 rows containing missing values (geom_point).
On Tue,
Dear Maria,
I am trying to add text only in the first panel of a faceted ggplot
The following might help you to achieve what you
want. I created a small dummy dataset, but I tried to use
your column names in the hope this would help:
library(ggplot2)
# data.frame
DF <- data.frame(Q = rep(1:5,
Hi Miluji,
Using Jim's interpretation of your desired graph,
you could do it in ggplot2 using your dat DF by:
ggplot() +
geom_bar(data=dat,
aes(x=week,y=count,fill=city),stat="identity",position="dodge") +
coord_flip() +
geom_line(data=dat, aes(x=week, y=mean_tmin))
There would still need
Hi Carol,
It might be a primitive question but I have a file of text and there is no
separator between character on each line and the strings on each line have the
same length. The format is like the following
absfjdslf
jfdldskjff
jfsldfjslk
When I read the file with read.table("myfile",colCl
5 matches
Mail list logo