Displaying 1 result from an estimated 1 matches for "thingsom".
Did you mean:
thingsm
2012 Mar 14
1
geom_plot creates Area Instead Of Lines
...ditions Y, Z. And the
observation took place at times T (0:10e5). Now my data frame D consists of
x,y,z,t each corresponding to the combination of X, Y, Z and T. I would
like to create different plots and use this:
h <- ggplot(D, aes(y=x, x=t))
h + geom_line(data=subset(subset(D,y=someThing),z=thingSome))
+geom_line(data=subset(subset(D,y=someThingElse),z=ThingSomeElse));
Now the issue is that T is a vector of repeated sequences from 0 to 10e5
(something like 1 2 3 1 2 3 1 2 3). This way X corresponds to the correct
time of measurement FOR MANY REPEATED MEASUREMENTS.
>From the above code...