0
Elmas fiyatını keserek elmas oranını gösteren histogramlar oluşturmaya çalışıyorum. Ancak bu kadar alabilirsiniz: Ben estetik sargı içinde ama boşunaYığılmış bir histogramın kodu
color = cut
ve ayrıca
fill = cut
kullanarak denedi
ggplot(aes(x = price), data = diamonds_df) +
geom_histogram(binwidth = 0.1, fill = "white", colour = "black") +
facet_wrap(~color, scales = "free_y") +
scale_x_log10() +
ylab("Total Count") +
xlab("Diamond Price") +
ggtitle("Distribution of diamond prices for different diamond colours and cuts")
.
'geom_histogram'ını kullanın ve daha büyük bir 'binwidth' belirtin mi? – Axeman
Bu mükemmel çalışıyor. Teşekkür ederim. – Seanosapien