I want to delete the rows that are having values which are all zeros. This is how my data set looks like:
ChildBks YouthBks CookBks DoItYBks RefBks ArtBks
1 0 1 0 0 0
0 0 0 0 0 0
1 1 0 0 0 1
0 0 1 1 0 0
I want to have it like this
ChildBks YouthBks CookBks DoItYBks RefBks ArtBks
1 0 1 0 0 0
1 1 0 0 0 1
0 0 1 1 0 0
How can we delete the second row as all the values in this rows are equal to zero.
Thanks.