Becoming a data scientist

Data Week: Becoming a data scientist

Data Pointed, CouchDB in the Cloud, Launching Strata

 

How do I become a data scientist?

Background: I recently finished my bachelor's degree in computer science at Berkeley. Although it may be a bit late, I am just now getting interested in learning more about statistics and "data science." Unfortunately, I don't have much of a math background (only took up to Linear Algebra) and the required probability/discrete math course for CS. Although I started working, I have the option of enrolling in an MS CS program in January. What courses should I be looking at and will a MS in Statistics be more useful? If so, is it possible to get into an MS in Statistics without a strong math background? I will probably be looking into taking machine learning and data visualization.

   
Strictly speaking, there is no such thing as "data science" (see  What is data science? ). See also: Vardi, Science has only two legs:  http://portal.acm.org/ft_gateway...
 
Here are some resources I've collected about working with data, I hope you find them useful  (note: I'm an undergrad student, this is not an expert opinion in any way).

1) Learn about matrix factorizations:

Take the Computational Linear Algebra course (it is sometimes called Applied Linear Algebra or Matrix Computations or Numeric Analysis or Matrix Analysis and it can be either CS or Applied Math course). Matrix  decomposition algorithms are fundamental to many data mining applications and usually underrepresented in a standard "machine learning" curriculum. With TBs of data traditional tools such as Matlab become not suitable for the job, you cannot just run eig() on Big Data. Distributed matrix computation packages such as those included in Apache Mahout [1] are trying to fill this void but you need to understand how the numeric algorithms/LAPACK/BLAS routines [2][3][4][5] work in order to use them properly, adjust for special cases, build your own and scale them up to terabytes of data on a cluster of commodity machines.[6] Usually numerics courses are built upon undergraduate algebra and calculus so you should be good with prerequisites.  I'd recommend these resources for self study/reference material:


2) Start learning statistics by coding with R: 
  • Pick up some R manuals (see
What are essential references for R?) and experiment with some of these data sets:  http://www.datawrangling.com/som...
and UCI Machine learning repository:  http://archive.ics.uci.edu/ml/
  • Here is a good reference to get started with regression analysis: 
Gelman, Data Analysis Using Regression and Multilevel/Hierarchical Models:
http://www.amazon.com/Analysis-R...
  •  Albert, Bayesian computation with R:
http://www.amazon.com/Bayesian-C...
  • Spector, Data Manipulation with R:
http://www.amazon.com/Bayesian-C...

3)  Learn about distributed systems and databases:
  • Note: this topic is not part of a standard Machine Learning track but you can probably find courses such as Distributed Systems or Parallel Programming in your CS/EE catalog. I believe it is important to learn how to work with a Linux cluster and how to design scalable distributed algorithms if you want to work with big data. It is also becoming increasingly important to be able to utilize the full power of multicore. (see http://en.wikipedia.org/wiki/Moo... , http://techresearch.intel.com/ar...)
  • Download Hadoop [8] and run some MapReduce jobs on your laptop in pseudo-distributed mode (see 
What's the best way to come up to speed on MapReduce, Hadoop, and Hive? )
  • Learn about Google technology stack (MapReduce, BigTable, Dremel, Pregel, GFS, Chubby, Protobuf etc). (See 
What are the most interesting Google Research papers? 
also http://research.google.com/pubs/... and  http://www.umiacs.umd.edu/~jimmy...,   http://www.columbia.edu/~ak2834/...)
  • Setup account with Amazon AWS/EC2/S3/EBS and experiment with running Hadoop on a cluster with large data sets (you can use Cloudera or YDN images, but in my opinion you can better understand the system if you set it up from scratch, using the original distribution). Watch the costs.
What are some promising open-source alternatives to Hadoop MapReduce for map/reduce? ) http://swtch.com/~rsc/
http://herpolhode.com/rob/
http://www.cs.princeton.edu/~bwk/
http://cm.bell-labs.com/who/dmr/
http://www.cs.columbia.edu/~aho/
http://plan9.bell-labs.com/who/ken/
http://www.informatik.uni-trier....

4)  Learn about data compression
 To be added
5)  Learn about machine learning

What are the hottest startups in the analytics space?  
Who are the best VCs in the field of analytics / data mining / databases?
Which companies have the best data science teams? 
What are the notable startups in the news space?
Does the US Census have a data team?  
Why do so many data geeks join web companies instead of solving large scale data problems in biology?  

6)  Learn about least-squares estimation and Kalman filters:

  • This is a classic topic and "data science" par excellence in my opinion. It is also  a good introduction to optimization and control theory. Start with Bierman's LLS tutorial given to his colleagues at JPL, it is clearly written and is inspiring (the Apollo mission trajectory was estimated using these methods): http://www.amazon.com/Factorizat... , also see Curkendall & Leondes: http://adsabs.harvard.edu/full/1974CeMec...8..481C and Quarles: http://citeseerx.ist.psu.edu/vie....
  • See Steven Kay's series on statistical signal estimation: http://www.amazon.com/Fundamenta..., also check out his short course outline at University of Rhode Island for a list of interesting topics to learn (this is usually part of EE curricula): http://www.ele.uri.edu/faculty/k...

7) Check out these Q&A:

What are the best blogs about data?  
What are the best Twitter accounts about data? 
What are the best blogs about bioinformatics? 
What are the best Twitter accounts about bioinformatics? 
What is data science?
What are the best courses at MIT?  
What are the best resources to learn about web crawling and scraping? 
What are the best interview questions to evaluate a machine learning researcher? 
What are the best resources for learning about distributed file systems?
What are some useful packages for working with large datasets in R? 
What are some good books on stringology and pattern matching?  
What's a good introductory machine learning text? 
What is the best book to pick up working knowledge of theoretical statistics (assuming strong general math)? 
Can anyone recommend a fantastic book on time series analysis? 
What are the standard texts on linear regression? 
What are some good books on random processes? 
How has BigTable evolved since the 2006 Google paper? 
What is a good source for learning about Bayesian networks? 
What are the best data visualizations ever created? 
What are some of the prediction and risk estimation models used by insurance companies? 
How do scientists share data? 
What are the best quant hedge funds? 
What are the best books on econometrics? 
What are the best introductory books on mathematical finance? 
What is the best approach for text categorization?
What are the numbers that every engineer should know, according to Jeff Dean?


If you do decide to go for a Masters degree:

8) Study Engineering - I'd go for CS with a focus on either IR or Machine Learning or a combination of both and take some systems courses along the way. As a "data scientist" you will have to write a ton of code and probably develop distributed algorithms/systems to process massive amounts of data. MS in Statistics will teach you how to do modeling and regression analysis etc, not how to build systems, I think the latter is more urgently needed these days as the old tools become obsolete with the avalanche of data. There is a shortage of engineers who can build a data mining system from the ground up. You can pick up statistics from books and experiments with R (see item 2 above) or take some statistics classes as a part of your CS studies. 

Good luck.

[1]  http://mahout.apache.org/
[2]  http://www.netlib.org/lapack/
[3]  http://www.netlib.org/eispack/
[4]  http://math.nist.gov/javanumeric...
[5]  http://www.netlib.org/scalapack/
[6]  http://labs.google.com/papers/ma...
[7]  http://www.r-project.org/
[8]  http://hadoop.apache.org/ 
Alex Kamil
   
Peter Skomoroch, Sr. Data Scientist @ Linkedin - ... 19 endorsements
If you have the time to take courses, give it a shot.

1) Try to take some of the undergrad math courses you missed. Linear Algebra, Advanced Calculus, Diff. Eq., Probability, Statistics are the most important.  After that, take some Machine Learning courses.  Read a few of the leading ML textbooks and keep up with journals to get a good sense of the field.

2) Read up on what the top data companies are doing.  After 1 or 2 machine learning courses you should have enough background to follow most of the academic papers.  Implement some of these algorithms on real data.

3) If you are working with large datasets, get familiar with the latest techniques & tools (Hadoop, NoSQL, R, etc.) by putting them into practice at work (or outside of work).

Read these posts by Mike Driscoll:

* http://dataspora.com/blog/the-se...
* http://dataspora.com/blog/sexy-d...
Peter Skomoroch
   
I am currently working as a data engineer with a team of others and I can tell you what we all have in common:

1) MS or PhDs in Applied Mathematics or Electrical Engineering
2)  Fluency C++/Matlab/Python
3)  Experience building distributed systems and algorithms.

I agree with Anon that CS is probably not the way to go unless you are going to MIT, Caltech, Stanford, CMU, etc. The way I ended up in the field was working as a software engineer designing real-time systems and getting a MS in Applied Math part-time. After 4 years I had skills from both fields and was offered a position doing ML/DM. With that said, I can tell you that its an extremely interesting field, and it appears the skill set will only become more desirable in the future.
Joseph Misiti
   
A good start for becoming a data scientist is to get MS (or PhD) in Machine Learning / Data Mining - along the way you will get plenty of experience in relevant math and use latest systems.  Stanford, UCI, CMU, MIT are top schools, but there are many others in USA - see
http://www.kdnuggets.com/educati... and in Europe
http://www.kdnuggets.com/educati...

Stanford has online courses in data mining / ML - check
http://www.kdnuggets.com/2010/06...
http://scpd.stanford.edu/
Gregory Piatetsky
   
Russell Jurney, Data Viznik, Hack Historian 2 endorsements
The school route is well covered.  This is the autodidactic route:

Look at some common problems solved with machine learning.  Look at problems in your areas of interest with an abundance of available data. Intersect these sets, pick a problem to solve with ML. Learn whatever it takes to solve it poorly.  Get people using the output of your model. Iterate, learn more techniques.  Work on your maths as needed.  Find mentors to talk with about problems you're working on.  Keep them updated, collaborate, learn from them.

Get good at building things with data.  Update your LinkedIn profile - congratulations, you're a data scientist!
Russell Jurney
   
Paco Nathan, 45 years ago I couldn't even spe... 4 endorsements
Stanford has an interdisciplinary degree specifically for data science, called Mathematical and Computational Sciences (MCS). It's sponsored by the Stats department and overlaps with CS, Math, Operations Research, etc.  http://www.stanford.edu/group/ma...  The BS degree dovetails particularly well with a co-term program to get an MS in Computer Science -- say, with a distributed systems specialization.

+1 to both Pete's and Russ' wise words above.
Paco Nathan
   
Yaniv Goldenrand, Fraud and credit modeling
3 votes by Alex Kamil, Kevin Li and Seb Paquet
Get a job doing it, this way you'll learn what really matters and get paid in the process.
The standard way to become a data analyst is master's in math/statistics + internship.
 
Other ways are:
- PhD in some empirical subject (economics, psychology).
- Get an engineering position in some data-intensive company and convert.
Some of the best modelers I know are ex-programmers.
Yaniv Goldenrand
   
Reading data mining related blogs is also important to understand the wide application areas of data mining. You have a list of data mining blogs here: http://www.dataminingblog.com/li...
Sandro Saitta
   
1) infrastructure of data processing, such as Hadoop/MapReduce,  Pig/Hive, and automation/cron.
2) simple stats about data, such as mean, correlation, and p-value.
3) algorithms for data modeling,  such as logistic regression, and SVM.
4) visualization of data, such as chart and table.

 


转自:http://www.cnblogs.com/sxfmol/archive/2010/09/27/1836806
2019-03-27 00:48

知识点

相关教程

更多

Spring Data: a new perspective of data operations

Spring Data: a new perspective of data operations  Spring Data is an umbrella project from SpringSource Community, which tries to provide a more generic abstraction of data operations for RDBMS, NoSQL

zz Data Analysis Process

An interesting article....easy to understand. Summary, be critical..... MindMap Chart Below...  By Robert Niles You wouldn't buy a car or a house without asking some questions about it first. So don't

(二)solr data import

solr 的 data import 导入 mysql数据 (1)、编辑 example/solr/conf/solrconfig.xml 添加 request handler <requestHandler name="/dataimport" class="org.apache.solr.handler.dataimport.DataImportHandle

《Big Data Glossary》笔记

清明假期翻以前的笔记发现有一些NoSQL相关的内容,比较零散,是之前读《Big Data Glossary》的笔记.简单整理了一下,记录于此.  Horizontal or Vertical Scaling   数据库扩展的方向有两个:    垂直扩展-换更牛的机器   水平扩展-增加同样的机器     选择水平扩展必然遇到的一个问题就是,如何决定数据分布在哪台机器上? 也就是分片策略

solr开发——spring-data-solr

spring貌似要一统天下,不断的给人以惊喜    请看官方发言:    我很高兴的宣布 Spring Data Solr 项目首个里程碑发布,这是由  Christoph Strobl  领导开发的项目,实现了 Spring Data 访问 Solr 存储并提供了 Spring Data JPA 模型的访问方式。此次之外,Spring Data Solr 提供了一个更底层的 SolrTempla

[转]So You Want To Be A Producer

pro-du-cer n. 1. Someone from a game publisher who will be the liaison between the publisher and the game development team. 2. A furnace that manufactures producer gas.  If you want to learn about fur

Spring Data Solr教程(翻译)

大多数应用都必须具有某种搜索功能,问题是搜索功能往往是巨大的资源消耗并且它们由于沉重的数据库加载而拖垮你的应用的性能 这就是为什么转移负载到一个外部的搜索服务器是一个不错的主意,Apache Solr是一个流行的开源搜索服务器,它通过使用类似REST的HTTP API,这就确保你能从几乎任何编程语言来使用solr 虽然支持任何编程语言的能力具有很大的市场价值,你可能感兴趣的问题是:我如何和在我的S

自己封装的一个Solr Data Import Request Handler Scheduler

经过将近一天的努力,终于搞定了Solr的Data Import Request HandlerScheduler。 Scheduler主要解决两个问题: 1.定时增量更新索引。 2.定时重做索引。 经过测试,Scheduler已经可以实现完全基于配置,无需开发功能,无需人工干预的情况下实现以上两个功能(结合 Solr 的Data Import Request Handler前提下)。 为了方便以后

使用Solr Data Import的delta-import功能

使用Solr Data Import的delta-import功能    Solr提供了full-import和delta-import两种导入方式,这篇文章主要讲解后者。 所谓delta-import主要是对于数据库(也可能是文件等等)中增加或者被修改的字段进行导入。主要原理是利用率每次我们进行import的时候在solr.home\conf下面生成的dataimport.properties文

Book Report: THE SOUL OF A NEW MACHINE

Book Report: THE SOUL OF A NEW MACHINE Zhengdong Zhang What’s a good man in a storm like? The prologue of the book draws a astonishing picture. The ship is winding in the billows, and the storm is how

Solr: a custom Search RequestHandler

As you know, I've been playing with Solr lately, trying to see how feasible it would be to customize it for our needs. We have been a Lucene shop for a while, and we've built our own search framework

How to Start a Business in 10 Days

With an executive staffing venture about to open, a business loan from the in-laws gnawing at her conscience and a new baby to care for, Michelle Fish was already feeling the pressure. But what really

A Great List of Windows Tools

Windowsis an extremely effective and a an efficient operating system. Like any other operating systemwindowstoo needs a good set of development tools which are extremely necessary for the operating sy

Create a Bootable MicroSD Card

http://gumstix.org/create-a-bootable-microsd-card.html                      Create a Bootable MicroSD Card      Beginners       Note: The following instructions are intended for experienced Gumstix us

TMF大数据分析指南 Unleashing Business Value in Big Data(一)

大数据分析指南 TMF Frameworx最佳实践 Unleashing Business Value in Big Data 前言    此文节选自TMF Big Data Analytics Guidebook。   TMF文档版权信息    Copyright © TeleManagement Forum 2013. All Rights Reserved. This docume

最新教程

更多

java线程状态详解(6种)

java线程类为:java.lang.Thread,其实现java.lang.Runnable接口。 线程在运行过程中有6种状态,分别如下: NEW:初始状态,线程被构建,但是还没有调用start()方法 RUNNABLE:运行状态,Java线程将操作系统中的就绪和运行两种状态统称为“运行状态” BLOCK:阻塞状态,表示线程阻塞

redis从库只读设置-redis集群管理

默认情况下redis数据库充当slave角色时是只读的不能进行写操作,如果写入,会提示以下错误:READONLY You can't write against a read only slave.  127.0.0.1:6382> set k3 111  (error) READONLY You can't write against a read only slave. 如果你要开启从库

Netty环境配置

netty是一个java事件驱动的网络通信框架,也就是一个jar包,只要在项目里引用即可。

Netty基于流的传输处理

​在TCP/IP的基于流的传输中,接收的数据被存储到套接字接收缓冲器中。不幸的是,基于流的传输的缓冲器不是分组的队列,而是字节的队列。 这意味着,即使将两个消息作为两个独立的数据包发送,操作系统也不会将它们视为两个消息,而只是一组字节(有点悲剧)。 因此,不能保证读的是您在远程定入的行数据

Netty入门实例-使用POJO代替ByteBuf

使用TIME协议的客户端和服务器示例,让它们使用POJO来代替原来的ByteBuf。

Netty入门实例-时间服务器

Netty中服务器和客户端之间最大的和唯一的区别是使用了不同的Bootstrap和Channel实现

Netty入门实例-编写服务器端程序

channelRead()处理程序方法实现如下

Netty开发环境配置

最新版本的Netty 4.x和JDK 1.6及更高版本

电商平台数据库设计

电商平台数据库表设计:商品分类表、商品信息表、品牌表、商品属性表、商品属性扩展表、规格表、规格扩展表

HttpClient 上传文件

我们使用MultipartEntityBuilder创建一个HttpEntity。 当创建构建器时,添加一个二进制体 - 包含将要上传的文件以及一个文本正文。 接下来,使用RequestBuilder创建一个HTTP请求,并分配先前创建的HttpEntity。

MongoDB常用命令

查看当前使用的数据库    > db    test  切换数据库   > use foobar    switched to db foobar  插入文档    > post={"title":"领悟书生","content":"这是一个分享教程的网站","date":new

快速了解MongoDB【基本概念与体系结构】

什么是MongoDB MongoDB is a general purpose, document-based, distributed database built for modern application developers and for the cloud era. MongoDB是一个基于分布式文件存储的数据库。由C++语言编写。旨在为WEB应用提供可扩展的高性能数据存储解决方案。

windows系统安装MongoDB

安装 下载MongoDB的安装包:mongodb-win32-x86_64-2008plus-ssl-3.2.10-signed.msi,按照提示步骤安装即可。 安装完成后,软件会安装在C:\Program Files\MongoDB 目录中 我们要启动的服务程序就是C:\Program Files\MongoDB\Server\3.2\bin目录下的mongod.exe,为了方便我们每次启动,我

Spring boot整合MyBatis-Plus 之二:增删改查

基于上一篇springboot整合MyBatis-Plus之后,实现简单的增删改查 创建实体类 添加表注解TableName和主键注解TableId import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import com.baom

分布式ID生成器【snowflake雪花算法】

基于snowflake雪花算法分布式ID生成器 snowflake雪花算法分布式ID生成器几大特点: 41bit的时间戳可以支持该算法使用到2082年 10bit的工作机器id可以支持1024台机器 序列号支持1毫秒产生4096个自增序列id 整体上按照时间自增排序 整个分布式系统内不会产生ID碰撞 每秒能够产生26万ID左右 Twitter的 Snowflake分布式ID生成器的JAVA实现方案