答案 0 :(得分:0)
这应该让你开始,但我倾向于同意迈克尔认为线条图可能不是一条路。
test <- data.frame(Name = c('M','D','T','H','P'),
Ball_Control = c(48,31,23,34,22),
Dribbling = c(30,13,13,10,12),
Marking = c(10,13,11,12,11),
Sliding_Tackle = c(11,13,16,18,12))
library(ggplot2)
library(tidyr)
df.gathered <- gather(test,key = 'Parameter',value = 'Value',2:5)
ggplot(df.gathered, aes(x = Parameter, y = Value, group = Name, col = Name))+geom_line()+
scale_y_continuous(limits = c(0,60), breaks = seq(0,60,10))