Hello, my name is Loi Phuoc Ly. You can call me Fedy. I am from Vietnam. I am a senior student at University of Cincinnati with Business Analyst. I grew up in West Vietnam in Rach Gia City, Kien Giang Province.
Experience of a mystery shopper with the coffee shop’s services and products: Conducted in-depth research on a coffee shop Highland Coffee in Rach Gia City (the chain of coffee shops in Vietnam); using observed skill products and services such as food, beverage, staff, the exterior appearance of the shop, internal appearance, and ambiance.
Market Research Marketing of The Body Shop. There are 6 members in the group. Write a detailed report on how The Body Shop’s Marketing activities when launching new products into the market such as SWOT analysis, positioning and competitor analysis, and 4P’s marketing mix.
I am a complete beginner to R. I have never had any experience with R before. I am currently taking a Data Mining class studying R.
wt<- 150 ht<- 68 bmi<- wt * 703 / ht^2 bmi
diameter <- 12 cost <- 8 area = pi * (diameter / 2)^2 cost / area
diameter <- 15 cost <- 12 area = pi * (diameter / 2)^2 cost / area
sqrt(140.51) (14 0.51)^(1/3) n <- c(1, 2, 3, 4, 5) n (14 * 0.51)^(1/n)
kg <- c(69, 62, 57, 59, 59, 64, 56, 66, 67, 66) lbs <- kg * 2.20462 mean(lbs) var(lbs) sd(lbs) range(lbs) lbs[lbs > mean(lbs)]
hts <- c(62, 58, 61, 61, 59, 64, 63, 61, 60, 62) bmi <- (lbs * 703) / hts^2 mean(bmi)
0:1 seq(from = 0, to = 1, by = 0.1)
10:1 seq( from = 10, to = 1, by = 0.5)
rep(1:3, times = 3) rep(c(“a”, “c”, “e”, “g”), each = 3) rep(c(“a”, “c”, “e”, “g”), times = 3) rep(1:3, each = 3, times = 2) rep(1:5, times = 5:1) rep(c(7, 2, 8, 1), times = c(4, 3, 1, 5))
child_names <- c(“John”, “Jack”, “Jane”) ht <- c(63, 59, 60)
height_ord <- order(ht) names_sort <- child_names[height_ord] names_sort ## [1] “Jack” “Jane” “John”
child_names <- c(“Alfred”, “Barbara”, “James”, “Jane”, “John”, “Judy”, “Louise”, “Mary”, “Ronald”, “William”) ht <- c(62, 58, 61, 61, 59, 64, 63, 61, 60, 62) height_ord <- order(ht) names_sort <- child_names[height_ord] names_sort
mydata <- c(2, 4, 1, 6, 8, 5, NA, 4, 7) mean(mydata) mean(mydata, na.rm = TRUE)