我正在使用Plotly在R Markdown上创建箱形图。之后,我将不得不将其转移给Rshiny。
1)我不确定如何根据名为Region的分类变量重新排序箱图
2)如何增加抖动?
3)有没有办法增加车身宽度?我真的看不到盒子。
这是我正在使用的代码。
yaxis <- list(
title = 'Town',
automargin = TRUE,
titlefont = list(size = 15)
)
xaxis <- list(
title = 'Resale Price',
automargin = TRUE,
titlefont = list(size = 15)
)
plot_ly(data, y=~town,x=~resale_price,color=~region, type = 'box') %>%
layout(autosize = F, yaxis = yaxis, xaxis = xaxis, boxmode = "group")
这是我想要实现的:
这是在Tableau中完成的。
我尝试R