哪种图表类型可以显示8个得分以及每个得分子集的平均值?

时间:2019-06-23 12:13:50

标签: r excel charts

我正在寻找可以显示以下数据的图表:

Nanoentities    LoC   Dependencies  SCC   Entities  Responsibilities    Relations   Semantic
2.9             0.0   10.0          10.0  3.0       2.9                 6.7         7.6

直到现在,一个简单的柱形图就可以了!但是,我仍然需要显示每个属性的平均值(可以将其分组如下):

Granularity=AVG(Nanoentities,LoC)
Coupling=AVG(Dependencies,SCC)
Cohesion=AVG(Entities,Responsibilities,Relations,Semantic) 
在同一图表中。 哪种类型的图表可以更好地表示此类数据?

2 个答案:

答案 0 :(得分:0)

您正在搜索显示图表而不是条形图的另一种可能性。 您可以使用@IBAction public func onOpenWeb(_ sender: UIButton) { guard let url = testUrl else {return} // technique that works rather than self.extensionContext.open var responder = self as UIResponder? let handler = { (success:Bool) -> () in if success { os_log("Finished opening URL") } else { os_log("Failed to open URL") } } let openSel = #selector(UIApplication.open(_:options:completionHandler:)) while (responder != nil){ if responder?.responds(to: openSel ) == true{ // cannot package up multiple args to openSel so we explicitly call it on the iMessage application instance // found by iterating up the chain (responder as? UIApplication)?.open(url, completionHandler:handler) // perform(openSel, with: url) return } responder = responder!.next } } plotly函数。

就像site一样,您可以通过设置不同的因子来显示数字。如果只想对一个变量显示一个变量,则可以使用散点图,如下所示:
     ggplot

您只需要交换#install.packages("ggplot2") library(ggplot2) plot(x=iris$Sepal.Length, y=iris$Sepal.Width, xlab="Sepal Length", ylab="Sepal Width", main="Sepal Length-Width")x值以换取您的数据部分,yxlab描述轴,ylab则用于图表标题。 要获取更多图表,只需搜索它们(有关名称和外观,请参见上面的链接),并在单独的包装中查看它们的示例代码。

答案 1 :(得分:0)

多类别的条/线组合应该可以解决问题。

enter image description here