How to get the number of rows in a dataframe in R
> nrow(dataframe) |
0
Kudos
0
Kudos
> nrow(dataframe) |
If you are converting a column of Unix timestamps in a dataframe: > df$Your.Times <- as.POSIXct(df$Your.Times, origin = “1970-1-1”) [1] [POSIXct datetimes] … or … If you are converting a single Unix timestamp: > yourtime =... Continue →