df <- data.frame(Empresa =
c("Disney World",
"Florida Hospital",
"Publix Supermarkets Inc",
"Walmart Stores Ind",
"Univaersal Orlando"),
Asalariados =
c(51600,
19283,
14995,
14995,
12000))
library(ggplot2)
ggplot(data=df, aes(x=Empresa, y=Asalariados)) + geom_bar(stat="identity", color="red", fill="blue")

knitr::kable(df)
| Disney World |
51600 |
| Florida Hospital |
19283 |
| Publix Supermarkets Inc |
14995 |
| Walmart Stores Ind |
14995 |
| Univaersal Orlando |
12000 |
head(df)
## Empresa Asalariados
## 1 Disney World 51600
## 2 Florida Hospital 19283
## 3 Publix Supermarkets Inc 14995
## 4 Walmart Stores Ind 14995
## 5 Univaersal Orlando 12000