-1
私は「setosa」という言葉を編集したいと思います。私はラボやテーマに挑戦しましたが、私は変えられません。グラフの表現 "setosa"の編集方法は?
# My code:
d <- iris
my_graph <- function(i){
d %>% filter(Species== i) %>%
ggplot(aes(x=i,y=Sepal.Length,fill=i)) + geom_boxplot() +labs(x="title", y="title") + theme (legend.position="none") -> grafico
return(grafico)
}
for(i in unique(d$Species)){
assign(paste0('gr_',i),
my_graph(i))
}
gr_setosa
マイグラフ:
This graph is the result of the above code