查看: 31990| 回复: 69
跳转到指定楼层
上一主题 下一主题
收起左侧

[统计--就业] data analyst面试统计知识总结~求大米

   
全局:

注册一亩三分地论坛,查看更多干货!

您需要 登录 才可以下载或查看附件。没有帐号?注册账号

x
目前楼主正在找全职da工作,因此复习的时候整理了一些统计相关的面试点,希望可以帮到大家,一起加油!不定期更新~如有错误烦请指正,谢谢~


Hypothesis Testing

Compare 2 data sets            
Compare 1 data set to an idealized data set

Null hypothesis
Alternative hypothesis

Type 1 error: h0 true, reject h0                           false positive            alpha    significance level    5%
Type 2 error: h0 false, fail to reject h0                 false negative           beta
. 1point3acres
Confidence level: 1-alpha   95%
                         Prob that a parameter falls within a specific range of values
                         Frequency that CI contains the true value of the unknown population parameter

Confidence interval: interval estimate
                             may contain the true value of an unknown population parameter

Power: the prob of rej h0 when h1 is true. From 1point 3acres bbs
          1-beta
          sensitivity. ----

p-value: when h0 is true, the prob of statistical summary >= actual observed results
            e.g. average weight of all babies last year is 200, random sample of this year is 220.
                  Null hyp: average weight of all babies this year is still 200
                  P-value = 0.004
                  If h0 is right, the prob that avg weight of random sample is 220 is extremely small.
                  H0 is wrong


Steps:
1. state h0, h1, alpha
2. determine test statistic, calculate its value, compare it to critical value
3. draw conclusion about h0

Difference between t-test and z-test



补充内容 (2019-1-28 12:36):
因为无法再次编辑,我就把更新内容发在回复里啦

补充内容 (2019-2-14 05:09):
大家可以“只看该作者”

WeChat3e09f347d9aac2254b3e3e7f6440a879.png (37.96 KB, 下载次数: 44)

WeChat3e09f347d9aac2254b3e3e7f6440a879.png

评分

参与人数 55大米 +91 收起 理由
Lin9 + 1 给你点个赞!
tangtangtang + 1 很有用的信息!
kisum233 + 2 给你点个赞!
XinyaoW. + 2 给你点个赞!
Bgg + 2 good

查看全部评分


上一篇:SAS base 考试 1/26/2019 北美机经 + 0基础96%过的小经验
下一篇:GRE分数选择问题

本帖被以下淘专辑推荐:

  • · DS|主题: 224, 订阅: 39
  • · JOB|主题: 269, 订阅: 12
推荐
 楼主| 小二来耕地 2019-3-28 04:23:25 | 只看该作者
全局:
pixie1994 发表于 2019-3-27 05:02
请问楼主准备这些面试的时候用什么复习书比较合适啊 谢谢~~~~~

我用了国内的统计书,然后还有美国研究生上课老师发的讲义~还有就是网上搜哈哈
回复

使用道具 举报

推荐
 楼主| 小二来耕地 2019-2-14 05:13:26 | 只看该作者
全局:
Logistic Regression
Binomial classification
Robust

Basic steps: . .и
1. hypothesis function to predict, h
2. cost function to measure the difference between h and observed results, sum or avg, J
3. min step 2 by gradient descent

gradient descent: first-order iterative optimization algorithm to find min of a function

Detailed steps: ..
1. h
Sigmoid function:
g(z)=1/(1+e^(-z) )
    Linear decision boundary
   
2. cost function (min J) -- maximum likelihood estimate
3. min J


Difference between linear & logistic

  
  
Linear
Logistic
  
Outcome
  
Continuous, can have infinite
  
Number of possible values
Limited number of possible
  
values
  
response
  
Continuous, negative values
Categorical
  
Error minimization technique
  
Ordinary least squares
Maximum likelihood method
  
Coefficient interpretation
  
Straightforward
Depends on family (binomial,
  
Poisson, etc.) and link (logit, log, etc.)

回复

使用道具 举报

推荐
 楼主| 小二来耕地 2019-2-5 07:09:09 | 只看该作者
全局:
Linear Regression (STATS 500).1point3acres
a linear approach to model the relationship between a dependent variable & one or more independent variables

simple LR: 1 explanatory variable
multiple LR: more than 1 explanatory variable

multivariate LR: multiple correlated dependent variables are predicted

estimation methods:
1. linear least squares: ordinary LS (OLS)
                                  Weighted LS
                                  Generalized LS (GLS)
2. maximum-likelihood estimation: ridge regression. 1point3acres
                                                  Lasso
                                                  Least absolute deviation (LAD): robust
3. other estimation techniques: principal component regression (PCR)
                                                                 # predictor is large / strong correlations among predictors
                                                                 2 stages: reduce predictors -- principal component analysis
.                                                                                 Use reduced predictors in OLS regression fit
                                                                 Extension: partial LS regression
回复

使用道具 举报

🔗
 楼主| 小二来耕地 2019-1-28 10:23:36 | 只看该作者
全局:
为什么无法编辑了。。。。
回复

使用道具 举报

🔗
 楼主| 小二来耕地 2019-1-28 12:38:17 | 只看该作者
全局:
ANOVA
Analyze differences among 3 or more group means in a sample
Categorical/qualitative predictors: factors -- have different levels
Parameters: effects -- fixed-effects models -- the only thing changes is mean among levels

Overall variance (y) = explained var (x) + unexplained var(e)
Somewhat robust to non-constant var
Errors: iid N(0, sigma2)
.1point3acres
One-way anova: 1 factor, typically for at least 3 groups -- F test
                              (2 groups -- t test, F=t2)
Two-way anova: 2 factors
. check 1point3acres for more.
Central limit theorem: in some situations, when independent random variables are added, their properly normalized sum tends toward a normal distribution even if the original variables are not normally distributed.
回复

使用道具 举报

🔗
Gabby 2019-1-29 12:01:07 | 只看该作者
本楼:
全局:
谢谢!!!!!!
回复

使用道具 举报

🔗
Gabby 2019-2-4 04:18:11 | 只看该作者
本楼:
全局:
谢谢总结
回复

使用道具 举报

🔗
doudou1222 2019-2-5 07:41:33 | 只看该作者
全局:
楼主有心了!👍
回复

使用道具 举报

🔗
xinyiii 2019-2-5 14:32:11 | 只看该作者
全局:
nice 有心整理
回复

使用道具 举报

🔗
 楼主| 小二来耕地 2019-2-6 00:54:37 | 只看该作者
全局:
.google  и
求加米哈哈
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册账号
隐私提醒:
  • ☑ 禁止发布广告,拉群,贴个人联系方式:找人请去🔗同学同事飞友,拉群请去🔗拉群结伴,广告请去🔗跳蚤市场,和 🔗租房广告|找室友
  • ☑ 论坛内容在发帖 30 分钟内可以编辑,过后则不能删帖。为防止被骚扰甚至人肉,不要公开留微信等联系方式,如有需求请以论坛私信方式发送。
  • ☑ 干货版块可免费使用 🔗超级匿名:面经(美国面经、中国面经、数科面经、PM面经),抖包袱(美国、中国)和录取汇报、定位选校版
  • ☑ 查阅全站 🔗各种匿名方法

本版积分规则

>
快速回复 返回顶部 返回列表