Gerden Clark’s Data Science Profile

Define skills (“a”) and skill levels (“b”).

a = c("Data Viz", "Machine Learning", "Math", "Statistics", "Computer Science", "Communication", "Domain Expertise")
b = c(9,2,5,5,7,9,8)

Create data frame using a & b and verifying the data.

df_profile = data.frame(Skill = a, Level = b)
df_profile
##              Skill Level
## 1         Data Viz     9
## 2 Machine Learning     2
## 3             Math     5
## 4       Statistics     5
## 5 Computer Science     7
## 6    Communication     9
## 7 Domain Expertise     8
summary(df_profile)
##     Skill               Level      
##  Length:7           Min.   :2.000  
##  Class :character   1st Qu.:5.000  
##  Mode  :character   Median :7.000  
##                     Mean   :6.429  
##                     3rd Qu.:8.500  
##                     Max.   :9.000

Create bar plot of the data frame and add formatting to make it easier to understand.

barplot(ylim = c(0,10), df_profile$Level, names.arg = df_profile$Skill, col = "darkred", ylab = "Skill Level", xlab = "Profile Skills", main = "Gerden Clark's Data Science Profile")