This dataset contains information on credit card customers, such as the customer's average credit limit, number of credit cards, number of physical visits to the bank, and number of visits to the bank's website.
Use dplyr functions to create a frequency table for Total_Credit_Cards. Label the frequencies as n.
Assign the table to freqTable
# Import the tidyverse
suppressPackageStartupMessages(library(dplyr))
# Load the dataset
"df <- read.csv(""credit_card.csv"")"
# Create a frequency table for Total_Credit_Cards
# Your code goes here
# Display frequency table
freqTable