I have used this function to remove rows that are not blanks:
data <- data[data$Age != "",]
in this dataset
     Initial  Age   Type
1    S        21    Customer
2    D              Enquirer
3    T        35    Customer
4    D        36    Customer  
However if I run the above code, I get this:
     Initial  Age   Type
1    S        21    Customer
N/A  N/A      N/A   N/A
3    T        35    Customer
4    D        36    Customer  
When all I want is:
     Initial  Age   Type
1    S        21    Customer
3    T        35    Customer
4    D        36    Customer  
I just want the dataset without any NAs and I wanted to remove any rows that are not blank, so ideally all NAs and any that are just "".
I have tried the na.omit function but this deletes everything from my dataset.
This is an example dataset I have used, but in my dataset there's over 1000 columns and I would like to remove all rows that are NA for a particular column name.
This is my first post, I apologise if this isn't the right way to write up my code, plus I am very new to R.
Also my row number has converted to NA when I don't want it there, it's messing up my calculation.
Thank you for taking time to read and commenting this post.