openintro (version 1.7.1)

tips: Tip data

Description

A simulated data set of tips over a few weeks on a couple days per week. Each tip is associated with a single group, which may include several bills and tables (i.e. groups paid in one lump sum in simulations).

Usage

data(tips)

Arguments

Format

A data frame with 95 observations on the following 5 variables.

week

Week number.

day

Day, either Friday or Tuesday.

nPeop

Number of people associated with the group.

bill

Total bill for the group.

tip

Total tip from the group.

Details

This data set was built using simulations of tables, then bills, then tips based on the bills. Large groups were assumed to only pay the gratuity, which is evident in the data. Tips were set to be plausible round values; they were often (but not always) rounded to dollars, quarters, etc.

References

http://www.openintro.org/

Examples

Run this code
# NOT RUN {
data(tips)
par(mfrow=c(2,2))
boxPlot(tips$tip, tips$day)
densityPlot(tips$tip, tips$week, key=1:3)
legend('topright', lty=1:3, col=c('black', 'red', 'blue'), legend=1:3)
dotPlot(tips$tip)
densityPlot(tips$tip, tips$day)
legend('topright', col=c('black','red'), lty=1:2,
	legend=c('Tuesday', 'Friday'))
# }

Run the code above in your browser using DataCamp Workspace