Data Visualization New
Data Visualization New
Data Visualization New
Visualization Packages
In the plot, to add label to the horizontal axis the variable to be configured is
xlab()
Which parameter in R helps to decide the number of bins which we want to manually
override?
breaks
Which parameter decides the line type & plot symbol respectively?
Ich & pty
In case of the plot, which parameter decides whether the plot should be line or
points or both?
To reset the grid to normal layout, after displaying multiple charts in single view
could be obtained by
par(mfcol(1,1))
Which parameter could be used to convert stacked barplot into grouped bar plot?
beside=TRUE
If one would like to visualize 6 graphs in single view with graphs scaling in row
wise fashion (2 rows)
par(mfrow=c(2,3))
Customizing the way your graphs could be arranged can be configured using _
layout()
Stratified boxplots are useful for examining the relationship between a categorical
variable and a numeric variable.
True
Which plot would be applicable for summarizing the value of numeric variable
Boxplot
Changing the font size of the axis labels could be accomplished using the following
font
Which text feature allows the text to written along the margin of the graph?
mtext
Lattice package supports the generation of trellis graphs (graphs that display a
variable or the relationship between variables, conditioned on one or more other
variables)
True
Using ggplot2 for multifaceted diagram, the deciding variable on the number of rows
or columns is
.(decimal)
In multifaceted plot, how many columns will be formed when facets is mentioned as
facets=.~drv
depends on drv
In multifaceted plot, how many columns will be formed when facets is mentioned as
facets=drv~.
always 1 column
Factors represent the subset of the data and they should be properly labelled
True
In multifaceted plot, how many rows will be formed when facets is mentioned as
facets=.~drv
always 1 row
In multifaceted plot, how many rows will be formed when facets is mentioned as
facets=drv~.
depends on drv