# HG changeset patch # User Oleksandr Gavenko # Date 1457217592 -7200 # Node ID 3206ad475871dc6bae9f6709d59f8d5f6c8ac443 # Parent 1435b942faabb9829fb5077b81b6fb5de8795806 Drop column from data frame by name diff -r 1435b942faab -r 3206ad475871 r.rst --- a/r.rst Sun Mar 06 00:28:56 2016 +0200 +++ b/r.rst Sun Mar 06 00:39:52 2016 +0200 @@ -208,6 +208,13 @@ library(plyr) newd <- rename(d, c("beta"="two", "gamma"="three")) +Removing names for raws and columns +=================================== +:: + + rownames(dt) <- NULL + colnames(dt) <- NULL + Filtering raws and columns ========================== ::