openintro (version 2.0.0)

playing_cards: Table of Playing Cards in 52-Card Deck

Description

A table describing each of the 52 cards in a deck.

Usage

playing_cards

Arguments

Format

A data frame with 52 observations on the following 2 variables.

number

The number or card type.

suit

Card suit, which takes one of four values: Club, Diamond, Heart, or Spade.

face_card

Whether the card counts as a face card.

Examples

Run this code
# NOT RUN {
playing_cards <- data.frame(
    number = rep(c(2:10, "J", "Q", "K", "A"), 4),
    suit = rep(c("Spade", "Diamond", "Club", "Heart"), rep(13, 4)))
playing_cards$face_card <-
    ifelse(playing_cards$number %in% c(2:10, "A"), "no", "yes")

# }

Run the code above in your browser using DataCamp Workspace