Hello! I am Sahith Bandi, a graduate student pursuing a master’s in Information Systems at the University of Cincinnati. I am originally from India and have a background in data engineering.
I completed my B.Tech in Mechanical Engineering in India in 2022. Currently, I am pursuing a master’s degree in Information Systems. My focus is on expanding my knowledge in data engineering, analytics, and cloud technologies.
I worked as a Data Engineer at BizAcuity Solutions from January 2022 to July 2024. My primary responsibilities included:
I have worked extensively with the following technologies:
I am new to R programming and currently learning. However, I have been experimenting with data visualization and statistical analysis. Below is a simple R code chunk that computes the sum of squares:
# Sum of squares example
x <- c(1, 2, 3, 4, 5)
sum_of_squares <- sum(x^2)
sum_of_squares
## [1] 55