0

1 つのヒストグラムだけにビン幅を指定するにはどうすればよいですか?

library(GGally)
data(tips, package="reshape")

library(ggplot2)
ggpairs(data=tips, # data.frame with variables
        columns=1:3, # columns to plot, default to all.
        title="tips data", # title of the plot
        mapping=aes(color=sex)) # aesthetics, ggplot2 style

ここに画像の説明を入力

4

1 に答える 1