ggplot2を使用していくつかのヒストグラムをプロットする短いRスクリプトがあります。ヒストグラムの最大頻度(プラス10%)に基づいて、ヒストグラムのymax制限を自動的に設定するにはどうすればよいですか?
scale_y_continuous(limits= c(0,ymax*1.1)
plot = ggplot(data, aes(myo_activity)) +
geom_histogram(binwidth=0.5, aes(fill=..count..))
plot + scale_x_continuous(expand = c(0,0), limits = c(30,90)) +
scale_y_continuous(expand = c(0,0), limits = c(0,140))