Create a 1-row data.frame consisting of only the columns for which there is only 1 unique value.
only.unique.vals <- function(d,...){ unique.vals <- lapply(d,unique) n.vals <- sapply(unique.vals,length) do.call(data.frame,unique.vals[n.vals==1]) }
Please contact Toby Dylan Hocking if you are using directlabels or have ideas to contribute, thanks! |
Documentation website generated from source code version 2021.2.24 (git revision bb6db07 Mon, 14 Jun 2021 22:38:45 +0530) using inlinedocs. |
validate |