# Customized stripchart
ggplot2.stripchart(data=df, xName='dose',yName='len',
groupName='dose',...backgroundColor="white", xtitle="Dose (mg)", ytitle="length",
mainTitle="Plot of length \n by dose")
# Customized...notch=TRUE,
removePanelGrid=TRUE,removePanelBorder=TRUE,
axisLine=c(0.5, "solid", "black"))
# Customized...# Customized stripchart, add box plot, pink fill color.
# Change the color of points to "black"
ggplot2...mainTitle="Plot of length \n by dose",
addBoxplot=TRUE, boxplotFill="pink", colour="black")
# Customized