On March 12, 2018 11:59 PM, Richard M. Heiberger wrote:
> It looks like your V3 is a factor.
>
> testing_ggplot <- data.frame(
>
> V1=factor(c(256, 256, 256, 272, 272, 272)),
>
> V2=c("Disabled", "Disabled", "Enabled", "Disabled", "Enabled", "Enabled"),
>
> V3=681:686)
>
thanks for the exp
It looks like your V3 is a factor.
testing_ggplot <- data.frame(
V1=factor(c(256, 256, 256, 272, 272, 272)),
V2=c("Disabled", "Disabled", "Enabled", "Disabled", "Enabled", "Enabled"),
V3=681:686)
library(ggplot2)
ggplot(testing_ggplot, aes(V2,V3 )) + geom_boxplot() +
facet_wrap( ~ V
Hi,
I was wondering if someone could give me a hint or two. I'm having problems
generating ggplot2 boxplots . The plot that is has dots but no boxplots. Below
is the dataset
> testing_ggplot
V1V2 V3
1 256 Disabled 688.61
2 256 Disabled 698.63
3 256 Disabled 700.02
4 256
3 matches
Mail list logo