ggplot(data_exp, aes(x = transaction, y = exp, size = count, colour = class, label = label)) +
geom_point(alpha = 0.5) +
geom_text(colour = "black", vjust = 0, nudge_y = 0.5, size = 3, fontface = "bold")
我想让情节中的点看起来更大,我尝试使尺寸变为计数* 1000,但似乎没有任何改变。