Learn How to Determine the Dimensions of a Data Frame in R
You can use the following functions in R to display the size of a given data frame: nrow: Display number of rows in data frame ncol: Display number of columns in data frame dim: Display dimensions (rows and columns) of data frame The following examples show how to use each of these functions in practice […]
Learn How to Determine the Dimensions of a Data Frame in R Read More ยป