How to get the number of rows in a dataframe in R
|
> nrow(dataframe) |
0
Kudos
0
Kudos
|
> nrow(dataframe) |
To read directly from a .xlsx in the same directory as your R script: > data <- read.xlsx(“yourdata.xlsx”) … or … To read from a workspace directory containing a .xlsx file: > wdir = “C:/workspace/yourdirectory” > data <-... Continue →