You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Graphhistogram<- hist(CS$salary,
ylim= c(0,28), # Range of y-valuesmain="Histogram of Frequency of CEOs' Salary", # Titlexlab="Salary",
ylab="Number of CEOs",
label=TRUE, # Value labelscol="pink")
# Frequency TableSalary.Group<- cut(CS$salary, histogram$breaks, include.lowest=TRUE, right=TRUE)
salary.table<- table(Salary.Group)
kable(salary.table, caption="Frequency Distribution by Salary Group")