Saved Bookmarks
| 1. |
Which of the following statement is another way to get a subset?(a) subsetcon(dataset,logical)(b) data.df[data.df=logical](c) sub(dataset,logical)(d) subcon(dataset,logical) |
|
Answer» Correct choice is (b) data.df[data.df=logical] Explanation: subset(data.df,select=variables,logical) get those objects from a data frame that meet a criterion. |
|