Data Visualization Using R
Data Visualization Using R
----------------------------------
1. In the plot, to add label to the horizontal axis the variable to be configured is- xlab
2. Scatterplot Matrix is an example of __________ type of visualization.- Multivariate Visualization
3. graphics,ggplot2 packages qualify for _________________ visualization packes
4. Which command in R, lists the available Datasets in R? -data()
5. Histograms , Density Plots are examples of which type of visualization - mutivariate visualization x,
11. Which parameter decides the line type & plot symbol respectively - ich & pty
13. 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))
14. Which parameter could be used to convert stacked barplot into grouped bar plot - beside =True
15. Customizing the way your graphs could be arranged can be configured using - layout()
16. Which parameter is helpful to swap the chart from x-axis to y-axis -horiz=True
17. Changing the font size of the axis labels could be accomplished using the following font -font.axis
19. Which plot would be applicable for summarizing the value of numeric variable - boxplot
21. Stratified boxplots are useful for examining the relationship between a categorical variable and a
numeric variable. -True
24. Which text feature allows the text to written along the margin of the graph - mtext
25. While adding text to graph, adj=0 refers to - text will start at mentioned posiotin
26. In lattice,y~x | A*B refers to - Display the relationship between numeric variables y and x separately for
every combination of factor A and B levels
27. In lattice, ~x|A refers to - display numeric variable x for each level of factor A
28. 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
31. In multifaceted plot, how many rows will be formed when facets is mentioned as facets=.~drv - always
1 row
32. In multifaceted plot, how many columns will be formed when facets is mentioned as facets=.~drv -
always 1 col x,
33. In multifaceted plot, how many columns will be formed when facets is mentioned as facets=drv~. - 3
columns x,(value of drv -1) cols x,
35. Factors represent the subset of the data and they should be properly labelled - True
36. The grey zone around the geom("smooth") line refers to -95%
37. Using ggplot2 for multifaceted diagram, the deciding variable on the number of rows or columns is - .
(decimal)
44. Which argument helps in changing the size of plotting characters - cex
46. To reset the grid to normal layout, after displaying multiple charts in single view could be obtained by
layout