回复: 10
跳转到指定楼层
上一主题 下一主题
收起左侧

分享一个没答好的consumer analytics题, missing value+imbalanced data+feature e...

全局:

2019(4-6月) MachineLearningEng 硕士 全职@ - 网上海投 - 其他  | | Other | 在职跳槽

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

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

x
最近交了一个coding题,feedback很不好. 感觉data 量太大,思路有点乱。题目如下, data和data dictionary放在我的google drive上

You are in a meeting with a product owner, they just launched an additional customer care center of excellence (CoE), and have opportunity to cross-sell/upsell customers with additional products. They need your help in identifying which customers to pitch to and what product.  
At your disposal is historical data for the last 12 months of customer upgrades, their demographic and transaction data. The business has 4 products - video, data, home security and Voice. A customer might be subscribed to a single product, a combination of two or three products or have all 4 products.   
a). Describe how you would go about providing a solution to the
您好!
本帖隐藏的内容需要积分高于 188 才可浏览
您当前积分为 0。
使用VIP即刻解锁阅读权限或查看其他获取积分的方式
游客,您好!
本帖隐藏的内容需要积分高于 188 才可浏览
您当前积分为 0。
VIP即刻解锁阅读权限查看其他获取积分的方式
Unlock interview details and practice with AI
Curated Interview Questions from Top Companies
get_dummies(data, columns=['product'])  
data2 = pd.get_dummies(data1, columns=['MAJOR_CREDIT_CARD_LIF'], dummy_na=True)  

#drop columns with no data
data3 = data2.dropna(axis=1,how='all')  

#impute missing data. If column type is integer, I will fill with mode. if column type is float, fill with median.
data4 = data3.apply(myfillna)  

省略random forest部分, 这个比较standard.


大神们讨论讨论? 我当时答了很多种model的不同方案但 总觉得最开始的数据处理不好

评分

参与人数 10大米 +42 收起 理由
RZZ + 1 给你点个赞!
maorq08 + 2 给你点个赞!
叶知晚 + 1 很有用的信息!
xujw07 + 1 给你点个赞!
starzero + 1 给你点个赞!

查看全部评分


上一篇:求职方向选择求批
下一篇:一波三折的亚麻1+3轮vo
全局:
您好!
本帖隐藏的内容需要积分高于 100 才可浏览
您当前积分为 0。
使用VIP即刻解锁阅读权限或查看其他获取积分的方式
游客,您好!
本帖隐藏的内容需要积分高于 100 才可浏览
您当前积分为 0。
VIP即刻解锁阅读权限查看其他获取积分的方式
Unlock interview details and practice with AI
Curated Interview Questions from Top Companies
回复

使用道具 举报

🔗
hanyipeng 2019-7-1 14:41:43 | 只看该作者
全局:
missing value可以intterpolation 或者填个mean, median, 如果真的null太多的话 可以直接弃了。 重点是要解释清楚为什么选择这种方式来处理这个feature
查了outlier?
回复

使用道具 举报

全局:
楼主数据link无法下载。已加米,能不能再分享一下。
回复

使用道具 举报

🔗
xujw07 2019-7-2 01:12:27 | 只看该作者
全局:
huixingzhijia 发表于 2019-7-1 22:54
楼主数据link无法下载。已加米,能不能再分享一下。

same here~~~
回复

使用道具 举报

🔗
叶知晚 2019-7-2 01:45:40 | 只看该作者
全局:
同上,同上上,LZ的链接没弄好打不开,可以重新弄一下吗?谢谢楼主,已加米
回复

使用道具 举报

🔗
Jessie2010 2019-7-2 02:12:01 | 只看该作者
全局:
楼主数据link无法下载,可以重新弄一下吗?谢谢楼主!
回复

使用道具 举报

🔗
Jessie2010 2019-7-2 02:21:00 | 只看该作者
全局:
帮贴,楼主的另外一个帖子有衔接 如下!谢谢楼主的分享,并且不设阅读权限!!有用的请加米!好多帖子没有米看不了!谢谢

https://drive.google.com/file/d/ ... F1/view?usp=sharing
https://drive.google.com/file/d/ ... ho/view?usp=sharing
https://drive.google.com/file/d/ ... up/view?usp=sharing

评分

参与人数 1大米 +2 收起 理由
huixingzhijia + 2 给你点个赞!

查看全部评分

回复

使用道具 举报

🔗
Jessie2010 2019-7-2 05:04:45 | 只看该作者
全局:
帮贴,楼主的另外一个帖子有衔接 如下!谢谢楼主的分享,并且不设阅读权限!!有用的请加米!好多帖子没有米看不了!

https://drive.google.com/file/d/ ... F1/view?usp=sharing
https://drive.google.com/file/d/ ... ho/view?usp=sharing
https://drive.google.com/file/d/ ... up/view?usp=sharing

评分

参与人数 3大米 +5 收起 理由
xujw07 + 1 thanks for sharing
lsydd489 + 2 给你点个赞!
huixingzhijia + 2 给你点个赞!

查看全部评分

回复

使用道具 举报

🔗
oralur 2019-7-3 01:07:42 | 只看该作者
全局:
用xgboost之类直接内置missing data逻辑的行不行?
回复

使用道具 举报

🔗
albeehere 2019-7-3 05:04:37 | 只看该作者
全局:
这是现场写code吗?感觉处理数据的时候多和面试官沟通问下feedback然后才进入model的部分吧,如果没时间实现至少要提到?不晓得lz怎么做的呢
回复

使用道具 举报

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

本版积分规则

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