Fitting the model using a subset of the data? #148
-
I was thinking of using a subset of the temporal data to fit my model, and sounds like the argument For instance, I have a data frame with 100 rows and a "time" column, the first time value is 1 and the last one 100. So I tried:
to use the first 50 time points, but gives me the following error: But if I use |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
No, this isn't a valid use of
Note that I am using the new, base-R pipe operator |
Beta Was this translation helpful? Give feedback.
No, this isn't a valid use of
times
. Better to do something likeNote that I am using the new, base-R pipe operator
|>
. So excited about it!