Hi! I am Shreya Ghelani, a graduate student at the University of Cincinnati pursuing a master’s program in Business Analytics. This is my first encounter with R markdown and I am pretty excited. I was born and raised in Mumbai - a wonderful city, very close to my heart. I love reading and writing although somehwere along the way, trying to keep up with the pace of life, these delightful hobbies have taken a back seat. My dream is to backpack around the world! My favourite quote is ~ “Ultimately, the race is to be the best you!”
Before coming to UC, I worked with Credit Suisse as a Technolofy Analyst for close to three years. During that time, I realized that I wanted to work in the fields of business intelligence and analytics. I aspire to harness the power of data and contribute to meaningful work.
x <- 100 * (1 + 0.05/12)^24
print(x)
## [1] 110.4941
y <- 3333 %% 222
print(y)
## [1] 3
n <- c(10000, 5000000, 45890789)
formula <- (1 + 1/n)^n
print(formula)
## [1] 2.718146 2.718282 2.718282
D <- 1000
K <- 5
h <- 0.25
Q <- (2*D*K/h)^0.5
print(Q)
## [1] 200
P <- 100
r <- 0.08
n <- 12
t <- 3
F <- P * (1 + r/n)^(n*t)
print(F)
## [1] 127.0237