Displaying 1 result from an estimated 1 matches for "r4_02".
Did you mean:
r1_02
2012 Apr 08
2
How to produce serveral plots with pairs of vectors
...ts, erveryone has five vectors (columns /variables):
dimensionen <- data.frame(meinspss$attr_diff_gesamt,
meinspss$finanz_diff_gesamt, meinspss$leist_diff_gesamt,
meinspss$soz_diff_gesamt, meinspss$wert_diff_gesamt)
gruppe <- data.frame(meinspss$R1_02, meinspss$R2_02,
meinspss$R3_02,meinspss$R4_02,meinspss$R5_02)
Now I would like to plot five similar graphs (beanplots, boxplots) for every
pair of vectors (dimension by gruppe) .
This works: box plot (dimensioned) - I receive a plot with 5 boxes.
This does not work: boxplot (Dimensionen ~ Gruppe) - I would like to receive
5 plots
I get th...