93.
. . . . . . . . is one type of the simplest machine learning classification algorithms that is a subset of supervised learning based on lazy learning.

94.
hat will be the output of the following R code?
> centre <- function(x, type) {
+ switch(type,
+        mean = mean(x),
+        median = median(x),
+        trimmed = mean(x, trim = .1))
+ }
> x <- rcauchy(10)
> centre(x, "mean")

95.
Point out the wrong statement?

97.
Point out the correct statement?

Read More Section(Control Structures in R Programming)

Each Section contains maximum 100 MCQs question on Control Structures in R Programming. To get more questions visit other sections.