To create a boxplot of a chosen variable in the data frame called plantgrowth:
main.r114 chars6 lines
Explanation:
plantgrowth
dataset using data(plantgrowth)
weight
variable using boxplot(plantgrowth$weight)
$
sign is used to access the weight
column of the plantgrowth
datasetYou can also create a more advanced boxplot with labels and titles:
main.r180 chars6 lines
Explanation:
weight
variable in the plantgrowth
dataset, grouped by the group
variablemain
, xlab
, and ylab
arguments are used to add a title and axis labels to the plotNote: You can customize the plot according to your requirements.
gistlibby LogSnag