Data Analyst Exercise

Data Analyst Exercise
Please be prepared to spend 45-60 minutes on this exercise. You will need access a
computer with internet connection and a SQL workbench of your choice. The
database is Postgres. Please email back your answers and the amount of time you
spent.
Postgres Database Connection Details
PGUSER=thistle_data
PGPASS=Water.Lemon.Town
PGDB=thistle
PGPORT=5432
PGHOST=thistle-sample.crysldnompz3.us-west-2.rds.amazonaws.com
The two schemas are public and thistle_web
thistle_web.subscriptions_subscription contains subscription data for a given
customer. Customers can have more than 1 subscription.
thistle_web.subscriptions_subscriptioncancellation.subscription_id is the
foreign key for thistle_web.subscriptions_subscription.id
A row is created in subscriptions_subscription when someone enters the
checkout flow.
subscriptions_subscription.date_initialized refers to the timestamp when a

Data Analyst作业代写、代写SQL编程语言作业
customer signs up for a subscription.
There is also an etl_calendar table in the public schema
Please provide the SQL queries, results and written context for the following
requests
.
Please write a query for how many customers started the subscription flow each
month as well as the number and % that completed.
.
What is the signup success rate (# of people signing up for a subscription vs. all
people who enter the checkout flow) for meat vs. veg plans?
.
Please calculate how many customers cancel within 14 days of signing up.
.
Please calculate retention by weekly cohort. Result should look like the following:

因为专业,所以值得信赖。如有需要,请加QQ:99515681 或邮箱:[email protected]

微信:codehelp

原文地址:https://www.cnblogs.com/comp163/p/11443402.html

时间: 2024-11-02 22:21:46

Data Analyst Exercise的相关文章

《5 Essential Skills Every Big Data Analyst Should Have》

Team Jigsaw ELEMENTARY, MY DEAR WATSON. Sherlock Holmes is the world’s greatest fictional detective. Though all that remains of 221/B Baker Street is ensconced in a bank in London, Sir Arthur Conan Doyle’s legacy remains alive and well today. The mos

数据分析师(Data Analyst),数据工程师(Data Engineer),数据科学家(Data Scientist)的区别

数据分析师(Data Analyst):负责从数据中提取出有用的信息,以帮助公司形成业务决策.工作内容包括:对数据进行提取,清洗,分析(用描述统计量,趋势分析,多维度分析,假设检验等统计常用方法对数据进行分析),总结结论并提出建议.数据分析师通常从业务团队那里获取需要分析的具体问题,并提供相应的解决方案.高级数据分析师还需要了解各种模型(如线性回归,决策树等),并能调包实现这些模型. 需要掌握的技能有:熟悉业务,会使用excel,ppt等基本工具,了解统计分析方法,会使用SQL从数据库提取数据,

R8:Learning paths for Data Science[continuous updating…]

Comprehensive learning path – Data Science in Python Journey from a Python noob to a Kaggler on Python So, you want to become a data scientist or may be you are already one and want to expand your tool repository. You have landed at the right place.

【转】The most comprehensive Data Science learning plan for 2017

I joined Analytics Vidhya as an intern last summer. I had no clue what was in store for me. I had been following the blog for some time and liked the community, but did not know what to expect as an intern. The initial few days were good – all the in

data cleaning

Cleaning data in Python Table of Contents Set up environments Data analysis packages in Python Clean data in Python Load dataset into Spyder Subset Drop data Transform data Create new variables Rename variables Merge two datasets Handle missing value

Why Apache Spark is a Crossover Hit for Data Scientists [FWD]

Spark is a compelling multi-purpose platform for use cases that span investigative, as well as operational, analytics. Data science is a broad church. I am a data scientist — or so I’ve been told — but what I do is actually quite different from what

Adventures with Testing BI/DW Application

数据产品测试与其他产品的不同之处: 根据精确.及时的数据分析,用户做出决策: 整合.频繁的检索数据大于存储: 数据需要及时.准确: 需要维护大量的历史数据: 检索的性能: 数据的安全性. 数据产品测试的阻碍: 性能问题.过期数据.功能问题.可扩展问题: 业务主要关注end reports:很多整合实现工作.缺少专业的文档--)重要的业务逻辑隐藏在复杂的架构中:忽略白盒测试的重要性:在设计阶段缺少测试的参:与缺少知识共享.过程的不成熟-------客户流失 数据量.复杂度不断变化: 上游数据改变直

Grey Area(数学统计题)

Grey Area Time Limit: 2000ms Memory Limit: 65536KB 64-bit integer IO format: %lld      Java class name: Main Special Judge Submit Status PID: 1083 Dr. Grey is a data analyst, who visualizes various aspects of data received from all over the world eve

在二元树中找出和为某一值的所有路径

题目:输入一个整数和一棵二元树. 从树的根结点开始往下访问一直到叶结点所经过的所有结点形成一条路径. 打印出和与输入整数相等的所有路径. 例如输入整数 22 和如下二元树 : 10 / 5 12 /\ 47 则打印出两条路径:10, 12 和 10, 5, 7. 1 package data.structure.exercise; 2 3 import java.util.LinkedList; 4 5 6 public class BinaryTree extends BinarySearch