I have tbl_df from csv file whit different length of columns, but all dataframe displaying as same length, where no data is NA. For example, in first column data only until row 120, but in second column data until 200, so dim(df)
is 200, and missing data for first column is na
.
How I can see real length of each column? I trying dim
, length
, 'nrow' specific for each column but without success its always display max size of column.