openintro (version 1.3)

edaPlot: Exploratory data analysis plot

Description

Explore different plotting methods using a click interface.

Usage

edaPlot(dataFrame, Col=c('#888888', '#FF0000', '#222222',
                         '#FFFFFF', '#CCCCCC', '#3377AA'))

Arguments

dataFrame
A data frame.
Col
A vector containing six colors. The colors may be given in any form.

Details

Below is a screen-capture image of the interface for edaPlot using the second data set in the examples below. Red is used to highlight the two active variables and plotting type.

edaPlotMarioKart.png
{EDA Plot for Mario Kart data}

See Also

histPlot, densityPlot, boxPlot, dotPlot

Examples

Run this code
data(mlbBat10)
bat <- mlbBat10[mlbBat10$AB > 200,]
#edaPlot(bat)

data(marioKart)
mk <- marioKart[marioKart$totalPr < 100,]
#edaPlot(mk)

Run the code above in your browser using DataLab