Summarizing and Merging Data

Question 1
Marks : +2 | -2
Pass Ratio : 50%
Which of the following transforms can be performed with data value?
log2
cos
log10
all of the mentioned
Explanation:
Many common transforms can be applied to the data with R.
Question 2
Marks : +2 | -2
Pass Ratio : 50%
Which of the following function gives information about top level data?
head
tail
summary
none of the mentioned
Explanation:
The function head is very useful for working with lists, tables, data frames and even functions.
Question 3
Marks : +2 | -2
Pass Ratio : 50%
Each observation forms a column in tidy data.
True
False
Explanation:
Each variable forms a column in tidy data.
Question 4
Marks : +2 | -2
Pass Ratio : 50%
Which of the following join is by default used in plyr package?
left
right
full
all of the mentioned
Explanation:
Join is faster in plyr package.
Question 5
Marks : +2 | -2
Pass Ratio : 50%
mutate function is used for casting as multi dimensional arrays.
True
False
Explanation:
mutate is used for adding new variables.
Question 6
Marks : +2 | -2
Pass Ratio : 50%
Point out the correct statement.
head function work on string
tail function work on string
head function work on string but tail function do not
none of the mentioned
Explanation:
Both head and tail function do not work on strings.
Question 7
Marks : +2 | -2
Pass Ratio : 50%
Point out the wrong statement.
Common variables are used to create missingness vector
Common variables are used to cutting up quantitative variables
Common variables are not used to apply transforms
All of the mentioned
Explanation:
Common variables are not used to apply transforms.
Question 8
Marks : +2 | -2
Pass Ratio : 50%
Which of the following function is used for casting data frames?
dcast
ucast
rcast
all of the mentioned
Explanation:
Use acast or dcast depending on whether you want vector/matrix/array output or data frame output.
Question 9
Marks : +2 | -2
Pass Ratio : 50%
Which of the following function is used for quantiles of quantitative values?
quantile
quantity
quantiles
all of the mentioned
Explanation:
In probability and statistics, the quantile function specifies, for a given probability in the probability distribution of a random variable, the value at which the probability of the random variable will be less than or equal to that probability.
Question 10
Marks : +2 | -2
Pass Ratio : 50%
Which of the following function is used for determining missing values?
any
all
is
all of the mentioned
Explanation:
In R, missing values are represented by the symbol NA.