how to print all the rows with non blank values in r code example
Example: r number of blanks in the data
sum(df=="") # Sum of empy cell of myvar
which(df$myvar=="", arr.ind=TRUE) # Specify which are empty
sum(df=="") # Sum of empy cell of myvar
which(df$myvar=="", arr.ind=TRUE) # Specify which are empty