title | author | date | output |
---|---|---|---|
CV |
Akinlabi Ajelabi |
09/01/2020 |
pdf_document |
I am an interesting fellow with good technical background. I am most intrigued by the data science profession and would like to get on any interesting project. Please find below a barchart of my data science profile.
criteria <- c("reading", "critical_thinking", "time_management", "mathematics", "computer_progamming", "system_design", "report_writing", "listening", "teamwork", "curiosity")
score <- c(7, 9, 7, 8, 7, 6.5, 8, 5, 9, 10)
data_science_profile <- data.frame(criteria, score)
library(ggplot2)
ggplot(data=data_science_profile, aes(x=criteria, y=score)) +
geom_bar(stat="identity")