Description Usage Arguments Details Value Examples
Keep only properties which are specified
1 | filter_by_prop_names(df, keep_prop_names = NULL, remove_prop_names = NULL)
|
df |
input data.frame. |
keep_prop_names |
character vector of models names |
remove_prop_names |
character vector of models names |
The input data.frame has to contain Property
column.
data.frame.
1 2 3 4 | file_name <- system.file("extdata", "free-wilson_frag_contributions.txt", package = "rspci")
df <- load_data(file_name)
df1 <- filter_by_prop_names(df, "overall")
df2 <- filter_by_prop_names(df, remove_prop_names = c("overall", "dispersive"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.