I only have 3 observations but 36 variables. This is in fact an output of dplyr's group_by()+summarise(). Considering this as a category, I need to represent this data graphically in any possible way (scatterplot, line etc..).
Below is the data.
> data_cluster %>%
+ group_by(PosGrp) %>%
+ summarise_all("mean",na.rm=TRUE)
PosGrp `Weak Foot` `Skill Moves` Crossing Finishing HeadingAccuracy ShortPassing Volleys Dribbling
<fct> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
1 DEF 2.82 2.21 51.2 35.1 61.1 59.2 35.6 52.4
2 FWD 3.12 2.70 50.8 65.9 60.1 59.8 57.7 65.1
3 MID 3.10 2.72 58.5 54.3 52.1 67.0 50.8 65.4