Question
How to translate r code to python ? 1. perc % summarize(perc = sum(buyer)/n()) 2. bingo %>% filter(buyer==1) %>% summarize(average_spend = mean(ordersize)) 3. bingo %>%
How to translate r code to python ?
1. perc <- bingo %>% summarize(perc = sum(buyer)/n())
2. bingo %>% filter(buyer==1) %>% summarize(average_spend = mean(ordersize))
3. bingo %>% group_by(ntile(recency, 20)) %>% summarize(avg_recency = mean(recency), perc = mean(buyer)) %>% ggplot(mapping = aes(x = avg_recency,y = perc)) + geom_point()
4. bingo_iq <- tuango %>% mutate(rec_quin_i = ntile(recency, 5), freq_quin_i = ntile(-frequency, 5), mon_quin_i = ntile(-monetary, 5))bingo_iq %>% select(buyer, recency, frequency, monetary, rec_quin_i) %>% slice(1:6)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started