专栏名称: 大数据应用
数据应用学院被评为2016北美Top Data Camp, 是最专业一站式数据科学咨询服务机构,你的数据科学求职咨询专家!
目录
相关文章推荐
数据派THU  ·  DeepSeek革命性NSA注意力机制问世! ... ·  3 天前  
数据派THU  ·  LLM模型的通病:模型坍塌 ·  4 天前  
人工智能与大数据技术  ·  Meta被曝AI训练「黑幕」!下载81.7T ... ·  5 天前  
艺恩数据  ·  【艺恩报告】2025家电“国补”焕新社媒研究 ·  4 天前  
51好读  ›  专栏  ›  大数据应用

每日一练 | Data Scientist & Business Analyst 面试题 150

大数据应用  · 公众号  · 大数据  · 2017-08-04 09:07

正文

从6月15日起,数据应用学院将与你一起温习数据科学(DS)和商业分析(BA)领域常见的面试问题。希望积极寻求相关领域工作的你每天关注我们的问题并且与我们一起思考,我们将会在第二天给出答案。

Day 50

DS Interview Questions

What’s the advantages and disadvantages of decision tree.

BA Interview Questions

R language:

Using the following variables:

x=1

i=c(1:10)

## write a for() loop that increments x by two for each i


欲知答案如何?请见下期分解!

Day 49 答案揭晓

DS Interview Questions

Describe what is a decision tree algorithm.

Decision tree is a type of supervised learning algorithm . It works for both categorical and continuous input and output variables. In this technique, we split the population or sample into two or more homogeneous sets (or sub-populations) based on most significant splitter / differentiator in input variables .

BA Interview Questions

R language:

Use the ‘rivers’ dataset to write a for loop. The loop prints the dataset:

rivers shorter than 500 are a ‘short river’;

rivers longer than 2000 are a ‘long river’;

and rivers in the middle range are printed in their original numbers.

data(rivers)

rivers

rivers$length

str(rivers)

for(i in 1:nrow(rivers)){

if(rivers$rivers[i]<500){rivers$length[i]

else if(rivers$rivers[i]>2000){rivers$length[i]

else{rivers$length[i]

}

str(rivers)


12

数据应用学院

数据应用学院(Data Application Lab), 北美第一家培训-项目实习-职业辅导-内推一站式专业数据人才输送机构,提供大数据和数据科学培训和公司项目解决方案,由南加州与硅谷的高级数据科学家与数据工程师联合创办,致力于传播数据行业最新应用和知识、培训及输送优秀大数据人才,以填补人才缺口、充分发挥大数据在商业中的力量。2016年被北美著名科技杂志Tech Beacon评为Top Data Camp。







请到「今天看啥」查看全文