NYC Data Science Academy| Blog
Bootcamps
Lifetime Job Support Available Financing Available
Bootcamps
Data Science with Machine Learning Flagship ๐Ÿ† Data Analytics Bootcamp Artificial Intelligence Bootcamp New Release ๐ŸŽ‰
Free Lesson
Intro to Data Science New Release ๐ŸŽ‰
Find Inspiration
Find Alumni with Similar Background
Job Outlook
Occupational Outlook Graduate Outcomes Must See ๐Ÿ”ฅ
Alumni
Success Stories Testimonials Alumni Directory Alumni Exclusive Study Program
Courses
View Bundled Courses
Financing Available
Bootcamp Prep Popular ๐Ÿ”ฅ Data Science Mastery Data Science Launchpad with Python View AI Courses Generative AI for Everyone New ๐ŸŽ‰ Generative AI for Finance New ๐ŸŽ‰ Generative AI for Marketing New ๐ŸŽ‰
Bundle Up
Learn More and Save More
Combination of data science courses.
View Data Science Courses
Beginner
Introductory Python
Intermediate
Data Science Python: Data Analysis and Visualization Popular ๐Ÿ”ฅ Data Science R: Data Analysis and Visualization
Advanced
Data Science Python: Machine Learning Popular ๐Ÿ”ฅ Data Science R: Machine Learning Designing and Implementing Production MLOps New ๐ŸŽ‰ Natural Language Processing for Production (NLP) New ๐ŸŽ‰
Find Inspiration
Get Course Recommendation Must Try ๐Ÿ’Ž An Ultimate Guide to Become a Data Scientist
For Companies
For Companies
Corporate Offerings Hiring Partners Candidate Portfolio Hire Our Graduates
Students Work
Students Work
All Posts Capstone Data Visualization Machine Learning Python Projects R Projects
Tutorials
About
About
About Us Accreditation Contact Us Join Us FAQ Webinars Subscription An Ultimate Guide to
Become a Data Scientist
    Login
NYC Data Science Acedemy
Bootcamps
Courses
Students Work
About
Bootcamps
Bootcamps
Data Science with Machine Learning Flagship
Data Analytics Bootcamp
Artificial Intelligence Bootcamp New Release ๐ŸŽ‰
Free Lessons
Intro to Data Science New Release ๐ŸŽ‰
Find Inspiration
Find Alumni with Similar Background
Job Outlook
Occupational Outlook
Graduate Outcomes Must See ๐Ÿ”ฅ
Alumni
Success Stories
Testimonials
Alumni Directory
Alumni Exclusive Study Program
Courses
Bundles
financing available
View All Bundles
Bootcamp Prep
Data Science Mastery
Data Science Launchpad with Python NEW!
View AI Courses
Generative AI for Everyone
Generative AI for Finance
Generative AI for Marketing
View Data Science Courses
View All Professional Development Courses
Beginner
Introductory Python
Intermediate
Python: Data Analysis and Visualization
R: Data Analysis and Visualization
Advanced
Python: Machine Learning
R: Machine Learning
Designing and Implementing Production MLOps
Natural Language Processing for Production (NLP)
For Companies
Corporate Offerings
Hiring Partners
Candidate Portfolio
Hire Our Graduates
Students Work
All Posts
Capstone
Data Visualization
Machine Learning
Python Projects
R Projects
About
Accreditation
About Us
Contact Us
Join Us
FAQ
Webinars
Subscription
An Ultimate Guide to Become a Data Scientist
Tutorials
Data Analytics
  • Learn Pandas
  • Learn NumPy
  • Learn SciPy
  • Learn Matplotlib
Machine Learning
  • Boosting
  • Random Forest
  • Linear Regression
  • Decision Tree
  • PCA
Interview by Companies
  • JPMC
  • Google
  • Facebook
Artificial Intelligence
  • Learn Generative AI
  • Learn ChatGPT-3.5
  • Learn ChatGPT-4
  • Learn Google Bard
Coding
  • Learn Python
  • Learn SQL
  • Learn MySQL
  • Learn NoSQL
  • Learn PySpark
  • Learn PyTorch
Interview Questions
  • Python Hard
  • R Easy
  • R Hard
  • SQL Easy
  • SQL Hard
  • Python Easy
Data Science Blog > Student Works > What does it take to predict MLB Starting Pitcher Performance accurately?

What does it take to predict MLB Starting Pitcher Performance accurately?

Joseph Wang
Posted on Mar 29, 2016

Contributed by Joseph Wang. He is currently in the NYC Data Science Academy 12 week full time Data Science Bootcamp program taking place between April 11th to July 1st, 2016. This post is based on his third class project - Web Scraping (due on the 6th week of the program).

Introduction: As quoted from Wikipedia: "The history of baseball  can be traced to the 19th century, when amateurs played a baseball-like game by their own informal rules using home made equipment. The popularity of the sport inspired the semipro national baseball clubs in the 1860s. During the Civil War a rumor began that Abner Doubleday started baseball ..."  The sport we know as baseball today has become data intensive regarding answering questions such as which players to recruit based on the needs of  different professional baseball clubs. Due to the long history of Major League Baseball (MLB) games in the United States, and the convention of good record keeping for each official game and even for each position, there is plenty of data to answer data science questions. For instance, is it possible to decide the likelihood that a player is going to be able to maintain a high performance for several years, that a player in a minor league would be successful in the MLB, and what a player can bring into the performance of the ball clubs as a whole, especially with the data revealing the performance of each individual player as well as the chemistry of the team as a whole.  Here, I intend to answer the questions on what factors decide the winning percentage of a starting pitcher, and if it is possible to predict the winning team with statistical significance.

Data sampling and filtering: To start the investigation, I found the structured data at the MLB websites which recorded all the typical and derived performance indices for each pitchers who appeared in MLB games from 1876 to 2016. We would concentrate on the records from 2008 to 2015. To scrape the data from the website, I use the Scrapy + Selenium packages based on Python language to crawl through each data entry which was found many layers below the main website page. The response variable WR, which characterizes the winning ability of a staring pitcher, is defined by the expression WR=(W-L)/(W+L), where W were the games the pitcher was responsible for a win, and L were the games the pitcher was responsible for a loss. A pitcher would get a negative score -1 when there were no games won under his duty. The index always varies between 1 and -1. I consider this index is more informative than the typical index WPCT=(W/W+L) where the pitchers without wins will score equally no matter how many lost games were committed.

The predictor/input variables are the chosen ones that cannot be directly related to each other with certainty by known mathematical equations to avoid redundancy. To sample the data only for starting pitchers, we select the row data labeled with starting records. In addition, only the staring pitchers who have pitched for more than 100 innings per year are chosen to be learned. The 14 baseball predictor variables defined here includes ERA, R , ER , HR, WHIP, GO_AO, OBP , SLG, OPS , K_9 , BB_9 , H_9 , K_BB , and P_IP as explained in Appendix I.

FIG. 1: Color map for correlation matrix

                                                                            FIG. 1: Color Map for Correlation Matrix

Exploratory Data Analysis: Let us first investigate the linear correlation between the response WR and other predictors. As shown in FIG. 1, the majority of predictors are negatively correlated with WR, except the indices K_9 and K_BB, indicating the pitcherโ€™s dominance and ability to throw strikes. Unfortunately, it appears that all the negative predictors are strongly correlated with each other. This may impede the predictive power of linear models based on all these predictor variables. To build a multiple linear regression model, strongly correlated predictors need to be treated properly to avoid large variance inflation which makes the regression coefficients statistically unreliable to have descriptive values.  In addition, we observe some weak nonlinear correlation between predictor variables, which may require nonlinear regression models or machine learning models, such as Random Forest, which can handle the nonlinear correlation. Are these predictors good enough for accurate WR prediction? This is what we will explore in the next section by using machine learning algorithms

                                                                                           FIG. 2: Feature Selection by PCA

Models: In order to evaluate how well the models we construct are effective, we split our observations into 70 percent training set and 30 percent test set. The optimization is done through the training data, and the prediction of errors is done through the test set. The first supervised machine learning model we should try is multiple linear regression. Due to the large number of predictors, it is not wise to search all the possible combinations and try to find one that minimize the errors for the test data. We will be guided by the feature subset selection from principle component analysis (PCA). For predictors which cluster together, we try to minimize the number of the selection in that cluster to minimize the effect of variance inflation. In FIG 2, for example, I only consider one or two predictors in the lower right quadrant. To actually select the best combination, we can refer to FIG 1 to find the predictor which is more weakly correlated with the other cluster members. As we can see, HR is more weakly correlated with other cluster members in the quadrant as shown by the farthest distance in FIG. 2 and the correlation matrix in FIG. 1. This will be the minimal predictor to include in the quadrant. The next predictor to select could be H9 or SLG since it keeps the distance from other members better. We can confirm it through the correlation matrix in FIG 1 by counting the number of dark blue balls in the off-diagonal elements. The rest of the cluster members will not be used for predictive modeling for multiple linear regressions. In the upper-right quadrant, we would select OBP or WHIP along with BB_9 and P_IP. In addition, we will consider all the predictors at the left quadrants since these predictors are very far from each other in FIG. 2 with weak linear correlation. Under the scenario, we are left with four regression models as WR~K_9+K_BB+GO_AO+BB_9+P_IP+HR+OBP/WHIP+H_9/SLG in R language. We find the overall prediction for these four models are not satisfactory suffering from intermediate variance inflation. To make progress, one can reduce one more predictor variable with models as WR~ K_9+K_BB+GO_AO+BB_9+P_IP+HR+OBP/R/ERA/OPS/WHIP. We end up with the best predictive model as  WR~ -0.008339*K_9+0.019755*K_BB+0.045393 *GO_AO+0.011299*BB_9+0.002066*P_IP+0.322154*HR-1.596730*R+0.678461 with the mean squared error(MSE) given as 0.03853194 and the correlation between predicted values and observed value in the test set given by 0.6270265.  If we further reduce one more variable, we cannot find any models with better prediction. As we mentioned earlier, there are some weak nonlinear correlation between predictor variables especially the variable K_BB with other ones. We suspect if the machine learning with random forest will get us a better prediction. We select the predictor variables: K_9, K_BB, GO_AO, BB_9, P_IP, HR, R, the test MSE(out of bag) is 0.04544826 which is not better than multiple linear regression for our data. This may be due to the curse of dimensionality where the number of observations N=1418 we have in our training set after filtering is scarce in the large dimension of the phase space spanned by WR and 7 predictor variables where the tree regression becomes too rough.

Conclusions and Discussions: We have scraped the baseball indices representative of the performance of a starting pitcher at the MLB website, and intend to predict the winning ability of a starting pitcher based on predictor baseball indices. To my best, we can predict WR with 7 predictor indices by a multiple linear regression model with around 60 percent accuracy of statistical significance. To achieve this result, we used PCA to reduce the number of predictor variables by half (from 14 to 7).  To further improve the prediction of the performance of the starting pitcher, one would need to go beyond the predictor variables included in the discussion, including the team winning percentage for each starting pitcher in the observations. Enlargement of the sampling data while fixing the number of predictor variables may be helpful for other machine learning algorithms such as random forest to shine so that the "curse of dimensionality" can be minimized.

Appendix I:

IP: The total number of innings pitched by the pitcher. The pitcher is credited for one-third inning for each out he records.

SLG: Slugging Percentage against a pitcher

ERA: The average number of earned runs allowed by a pitcher; total number of earned runs allowed multiplied by 9 divided by the number of innings pitched

OPS: On-base Percentage plus Slugging Percentage against a pitcher (OBP+SLG)

R: The average number of hits allowed by a pitcher  per inning

K_9: The average number of strikeouts per 9 innings by a pitcher

ER: The average number of earned runs allowed by the pitcher per inning

BB_9: The average number of walks issued per 9 innings by a pitcher 

HR: The average number of home runs allowed by a pitcher per inning

H_9: The average number of hits allowed per 9 innings by a pitcher

WHIP:   The average number of walks and hits by a pitcher, Hits plus walks allowed divided by innings pitched

K_BB: K_9/BB_9

GO_AO: Ratio of outs made on the ground v. the air by a pitcher

P_IP: Number of pitches thrown per a pitcher divided by the number of innings pitched (P/IP)

Appendix II(Python codes for web scraping):

items.py:

# Define here the models for your scraped items

# See documentation in:  http://doc.scrapy.org/en/latest/topics/items.html

from scrapy import Item, Field

class MoviesItem(Item):

# define the fields for your item here like:

# name = scrapy.Field()

Player = Field()

GS = Field()

W = Field()

L = Field()

IP = Field()

GS = Field()

ERA = Field()

R = Field()

ER = Field()

HR = Field()

WHIP = Field()

WPCT = Field()

GO_AO = Field()

OBP = Field()

SLG = Field()

OPS = Field()

K_9 = Field()

BB_9 = Field()

H_9 = Field()

K_BB = Field()

P_IP = Field()

pipelines.py:

from scrapy.exceptions import DropItem

class ValidateItemPipeline(object):

def process_item(self, item, spider):

if not all(item.values()):

raise DropItem("Missing values!")

else:

return item

class WriteItemPipeline(object):

def __init__(self):

self.file = open('MLB2015.txt', 'w')

def process_item(self, item, spider):

index=0

for index in range(49):

line = str(item["Player"][index])+' '+'\t'\

+ '\t' + str(item['W'][index])\

+ '\t' + str(item['L'][index]) \

+ '\t' + str(item['IP'][index]) \

+ '\t' + str(item['GS'][index]) \

+ '\t' + str(item['ERA'][index]) \

+ '\t' + str(item['R'][index]) \

+ '\t' + str(item['ER'][index]) \

+ '\t' + str(item['HR'][index]) \

+ '\t' + str(item['WHIP'][index]) \

+ '\t' + str(item['WPCT'][index]) \

+ '\t' + str(item['GO_AO'][index]) \

+ '\t' + str(item['OBP'][index]) \

+ '\t' + str(item['SLG'][index]) \

+ '\t' + str(item['OPS'][index]) \

+ '\t' + str(item['K_9'][index]) \

+ '\t' + str(item['BB_9'][index]) \

+ '\t' + str(item['H_9'][index]) \

+ '\t' + str(item['K_BB'][index]) \

+ '\t' + str(item['P_IP'][index]) \

+ '\n'

self.file.write(line)

return item

settings.py:

BOT_NAME = 'selenium_demo'

SPIDER_MODULES = ['selenium_demo.spiders']

NEWSPIDER_MODULE = 'selenium_demo.spiders'

ITEM_PIPELINES = {'selenium_demo.pipelines.ValidateItemPipeline': 100,

'selenium_demo.pipelines.WriteItemPipeline': 200}

DOWNLOAD_DELAY = 3

selenium_demo_spider.py:

class DemoSpider(Spider):

name = "selenium_demo"

allowed_urls = ['http://mlb.mlb.com']

start_urls = ["http://mlb.mlb.com/stats/sortable.jsp?c_id=hou#game_type='R'&season=2006&league_code='MLB'&split=&playerType=ALL&sectionType=sp&statType=pitching&elem=%5Bobject+Object%5D&tab_level=child&click_text=Sortable+Player+pitching&season_type=ANY&page=1&ts=1464232459333&sportCode='mlb'&team_id=&active_sw=&position='1'&page_type=SortablePlayer&sortOrder='desc'&sortColumn=w&results=&perPage=50&timeframe=&last_x_days=&extended=0"]

def __init__(self):

self.driver = webdriver.Chrome()

def parse(self, response):

self.driver.get("http://mlb.mlb.com/stats/sortable.jsp?c_id=hou#game_type='R'&season=2006&league_code='MLB'&split=&playerType=ALL&sectionType=sp&statType=pitching&elem=%5Bobject+Object%5D&tab_level=child&click_text=Sortable+Player+pitching&season_type=ANY&page=1&ts=1464232459333&sportCode='mlb'&team_id=&active_sw=&position='1'&page_type=SortablePlayer&sortOrder='desc'&sortColumn=w&results=&perPage=50&timeframe=&last_x_days=&extended=0")

# response.url="http://mlb.mlb.com/stats/sortable.jsp?c_id=hou#game_type='R'&season=2014&league_code='MLB'&split=&playerType=ALL&sectionType=sp&statType=pitching&elem=%5Bobject+Object%5D&tab_level=child&click_text=Sortable+Player+pitching&season_type=ANY&page=2&ts=1463597259434&sportCode='mlb'&team_id=&active_sw=&position='1'&page_type=SortablePlayer&sortOrder='desc'&sortColumn=w&results=&perPage=50&timeframe=&last_x_days=&extended=1"

while True:

try:

response = TextResponse(url=response.url, body=self.driver.page_source, encoding='utf-8')

rows = response.xpath('//tr').extract()

next = self.driver.find_element(By.CLASS_NAME, "paginationWidget-next")

for row in rows:

Player = Selector(text=row).xpath('//td[2]/a/text()').extract()

W = Selector(text=row).xpath('//td[6]/text()').extract()

L = Selector(text=row).xpath('//td[7]/text()').extract()

IP = Selector(text=row).xpath('//td[13]/text()').extract()

GS = Selector(text=row).xpath('//td[10]/text()').extract()

ERA = Selector(text=row).xpath('//td[8]/text()').extract()

R = Selector(text=row).xpath('//td[15]/text()').extract()

ER = Selector(text=row).xpath('//td[16]/text()').extract()

HR = Selector(text=row).xpath('//td[17]/text()').extract()

WHIP = Selector(text=row).xpath('//td[21]/text()').extract()

WPCT = Selector(text=row).xpath('//td[38]/text()').extract()

GO_AO = Selector(text=row).xpath('//td[39]/text()').extract()

OBP = Selector(text=row).xpath('//td[40]/text()').extract()

OPS = Selector(text=row).xpath('//td[42]/text()').extract()

K_9 = Selector(text=row).xpath('//td[43]/text()').extract()

BB_9 = Selector(text=row).xpath('//td[44]/text()').extract()

H_9 = Selector(text=row).xpath('//td[45]/text()').extract()

K_BB = Selector(text=row).xpath('//td[46]/text()').extract()

P_IP = Selector(text=row).xpath('//td[47]/text()').extract()

item = MoviesItem()

item['Player'] = Player

item['W'] = W

item['L'] = L

item['IP'] = IP

item['GS'] = GS

item['ERA']= ERA

item['R'] = R

item['ER'] = ER

item['HR'] = HR

item['WHIP'] = WHIP

item['WPCT'] = WPCT

item['GO_AO'] = GO_AO

item['OBP'] = OBP

item['SLG'] = SLG

item['OPS'] = OPS

item['K_9'] = K_9

item['BB_9'] = BB_9

item['H_9'] = H_9

item['K_BB'] = K_BB

item['P_IP'] = P_IP

yield item

next.click()

time.sleep(5)

except:

break

About Author

Joseph Wang

Joseph Wang is a theoretical physicist with 20 years of proven research experience in modeling collective phenomena and exploration numerical simulation to make predictions in complex systems. Identifying correlations between different degrees of freedoms, connecting those to the...
View all posts by Joseph Wang >

Related Articles

Capstone
Anomaly Detection Data with Fraudulent Healthcare Providers
Student Works
Using Data to Analyze Movie Reviews - NLP
Capstone
Predicting Hospital Readmission Rates
Capstone
Mentor Matching using Machine Learning
Big Data
House Price Prediction with Creative Feature Engineering and Advanced Regression Techniques

Leave a Comment

Cancel reply

You must be logged in to post a comment.

Sports Collectibles,, Sports Memorabilia, Sports Collectibles August 22, 2017
{Awesome|Tremendous|Amazing} {| post} {but |} {read|check out| check out this} {|Sports Collectibles|Sports Memorabilia|Sports Collectibles Online|}{[https://www.facebook.com/cindaamazonsportscollectibles]} | our page}

View Posts by Categories

All Posts 2399 posts
AI 7 posts
AI Agent 2 posts
AI-based hotel recommendation 1 posts
AIForGood 1 posts
Alumni 60 posts
Animated Maps 1 posts
APIs 41 posts
Artificial Intelligence 2 posts
Artificial Intelligence 2 posts
AWS 13 posts
Banking 1 posts
Big Data 50 posts
Branch Analysis 1 posts
Capstone 206 posts
Career Education 7 posts
CLIP 1 posts
Community 72 posts
Congestion Zone 1 posts
Content Recommendation 1 posts
Cosine SImilarity 1 posts
Data Analysis 5 posts
Data Engineering 1 posts
Data Engineering 3 posts
Data Science 7 posts
Data Science News and Sharing 73 posts
Data Visualization 324 posts
Events 5 posts
Featured 37 posts
Function calling 1 posts
FutureTech 1 posts
Generative AI 5 posts
Hadoop 13 posts
Image Classification 1 posts
Innovation 2 posts
Kmeans Cluster 1 posts
LLM 6 posts
Machine Learning 364 posts
Marketing 1 posts
Meetup 144 posts
MLOPs 1 posts
Model Deployment 1 posts
Nagamas69 1 posts
NLP 1 posts
OpenAI 5 posts
OpenNYC Data 1 posts
pySpark 1 posts
Python 16 posts
Python 458 posts
Python data analysis 4 posts
Python Shiny 2 posts
R 404 posts
R Data Analysis 1 posts
R Shiny 560 posts
R Visualization 445 posts
RAG 1 posts
RoBERTa 1 posts
semantic rearch 2 posts
Spark 17 posts
SQL 1 posts
Streamlit 2 posts
Student Works 1687 posts
Tableau 12 posts
TensorFlow 3 posts
Traffic 1 posts
User Preference Modeling 1 posts
Vector database 2 posts
Web Scraping 483 posts
wukong138 1 posts

Our Recent Popular Posts

AI 4 AI: ChatGPT Unifies My Blog Posts
by Vinod Chugani
Dec 18, 2022
Meet Your Machine Learning Mentors: Kyle Gallatin
by Vivian Zhang
Nov 4, 2020
NICU Admissions and CCHD: Predicting Based on Data Analysis
by Paul Lee, Aron Berke, Bee Kim, Bettina Meier and Ira Villar
Jan 7, 2020

View Posts by Tags

#python #trainwithnycdsa 2019 2020 Revenue 3-points agriculture air quality airbnb airline alcohol Alex Baransky algorithm alumni Alumni Interview Alumni Reviews Alumni Spotlight alumni story Alumnus ames dataset ames housing dataset apartment rent API Application artist aws bank loans beautiful soup Best Bootcamp Best Data Science 2019 Best Data Science Bootcamp Best Data Science Bootcamp 2020 Best Ranked Big Data Book Launch Book-Signing bootcamp Bootcamp Alumni Bootcamp Prep boston safety Bundles cake recipe California Cancer Research capstone car price Career Career Day ChatGPT citibike classic cars classpass clustering Coding Course Demo Course Report covid 19 credit credit card crime frequency crops D3.js data data analysis Data Analyst data analytics data for tripadvisor reviews data science Data Science Academy Data Science Bootcamp Data science jobs Data Science Reviews Data Scientist Data Scientist Jobs data visualization database Deep Learning Demo Day Discount disney dplyr drug data e-commerce economy employee employee burnout employer networking environment feature engineering Finance Financial Data Science fitness studio Flask flight delay football gbm Get Hired ggplot2 googleVis H20 Hadoop hallmark holiday movie happiness healthcare frauds higgs boson Hiring hiring partner events Hiring Partners hotels housing housing data housing predictions housing price hy-vee Income industry Industry Experts Injuries Instructor Blog Instructor Interview insurance italki Job Job Placement Jobs Jon Krohn JP Morgan Chase Kaggle Kickstarter las vegas airport lasso regression Lead Data Scienctist Lead Data Scientist leaflet league linear regression Logistic Regression machine learning Maps market matplotlib Medical Research Meet the team meetup methal health miami beach movie music Napoli NBA netflix Networking neural network Neural networks New Courses NHL nlp NYC NYC Data Science nyc data science academy NYC Open Data nyc property NYCDSA NYCDSA Alumni Online Online Bootcamp Online Training Open Data painter pandas Part-time performance phoenix pollutants Portfolio Development precision measurement prediction Prework Programming public safety PwC python Python Data Analysis python machine learning python scrapy python web scraping python webscraping Python Workshop R R Data Analysis R language R Programming R Shiny r studio R Visualization R Workshop R-bloggers random forest Ranking recommendation recommendation system regression Remote remote data science bootcamp Scrapy scrapy visualization seaborn seafood type Selenium sentiment analysis sentiment classification Shiny Shiny Dashboard Spark Special Special Summer Sports statistics streaming Student Interview Student Showcase SVM Switchup Tableau teachers team team performance TensorFlow Testimonial tf-idf Top Data Science Bootcamp Top manufacturing companies Transfers tweets twitter videos visualization wallstreet wallstreetbets web scraping Weekend Course What to expect whiskey whiskeyadvocate wildfire word cloud word2vec XGBoost yelp youtube trending ZORI

NYC Data Science Academy

NYC Data Science Academy teaches data science, trains companies and their employees to better profit from data, excels at big data project consulting, and connects trained Data Scientists to our industry.

NYC Data Science Academy is licensed by New York State Education Department.

Get detailed curriculum information about our
amazing bootcamp!

Please enter a valid email address
Sign up completed. Thank you!

Offerings

  • HOME
  • DATA SCIENCE BOOTCAMP
  • ONLINE DATA SCIENCE BOOTCAMP
  • Professional Development Courses
  • CORPORATE OFFERINGS
  • HIRING PARTNERS
  • About

  • About Us
  • Alumni
  • Blog
  • FAQ
  • Contact Us
  • Refund Policy
  • Join Us
  • SOCIAL MEDIA

    ยฉ 2025 NYC Data Science Academy
    All rights reserved. | Site Map
    Privacy Policy | Terms of Service
    Bootcamp Application