我试图将个别主题的数据点/分数叠加到我用rCharts创建的箱形图上。我已经看到HighCharts的一个选项是将箱形图创建为“objects”,这可能是如何将个人的点数放入箱图中的线索(这样就可以循环覆盖所有个体'所有类别的得分)。
我的香草箱图是:
#Box-Plots
#Create a new Highchart
h2 <- Highcharts$new()
h2$set(series = list(list(name = "all scores", data = cat.stats)))
#Add axis details
h2$xAxis(
categories = levels(longdata$category)
)
h2$yAxis(
min = 0,
max = 100,
tickInterval = 10,
title = list(text = 'Scores (%)')
)
#Define the type of plot
h2$chart(
type = 'boxplot',
inverted = 'true')
#Give it a title
h2$title(
text = 'Your functioning across four domains and overall compared to the whole group'
)
h2
在“整体”类别中添加'cut-score'行的能力也会很棒。