I have a data set with 6 alternatives. I used the scale function to  standardize my data set. Now I want to plot a curve for each row.
I want to have my six alternatives as values in the X-Axis, and their standardize value in the Y-Axis.
A sample of my data set is like this:
    fish   rice   meet   milk
   1   2.3    3.4   1.4     1.3
   1   2.6    3.5   2.4     2.4
   1   4.3    1.9   3.3     3.1
   1  1.3    2.4   4.4     9.3
   2  1.3    3.4   4.1     3.4
   2   3.3    2.9   3.3     2.1
   2   4.5    3.9   3.3     3.1
   2  1.4    2.4   4.4     9.3
where first column is individual, in this sample we had 2 person Now I want to draw a curve for each row so in the x-axis I have (fish, rice meet milk) and in y-axis I have these numbers.
For example, the first curve is formed by connecting points 2.3, 3.4, 1.4, 1.3 in y-axis

