How to get the number of rows in a dataframe in R
|
> nrow(dataframe) |
0
Kudos
0
Kudos
|
> nrow(dataframe) |
If you are finding the length of time (in hours) between two columns of dates in a dataframe: > df$yourLength <- round(int_length(interval( df$yourStartTime, df$yourEndTIme)) / 60 / 60, digits = 2) [1] [interval lengths] … or … If... Continue →