SlideShare una empresa de Scribd logo
1 de 24
Descargar para leer sin conexión
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AWS re:INVENT
Transform Chronic Conditions
Analysis with AWS: Stream, Cohort,
and Machine Learning
U j j w a l R a t a n a n d N a v n e e t S r i v a s t a v a
H L C 3 0 3
N o v e m b e r 2 7 , 2 0 1 7
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Problem Statement
Help identify and predict cohorts of chronic diabetes patients who
may encounter a kidney related problem.
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Why Is This Important?
• Diabetes mellitus, usually called diabetes, is a disease in which the body does not
make enough insulin, thereby increasing blood sugar levels.
• About 30 percent of patients with Type 1 (juvenile onset) diabetes and 10 to 40
percent of those with Type 2 (adult onset) diabetes eventually will suffer from
kidney failure.**
• Our goal is to find the indicators that drives high chances of getting kidney failure.
• This will allow targeted interventions in patients who demonstrate these indicators
to reduce the risk of kidney problems.
**Reference : https://www.kidney.org/atoz/content/diabetes
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
The Business Flow
Identify case and
control groups
Gather data from
Glucometer
Transform
data
Explore Features and
Apply deep learning
Analyze and
visualize the data
Patient
Dataset
Intervention
Drive Changes
The Technical Flow
Clinical
Records
Glucometer
(IoT Button)
AWS IoT ingests lab
values from the
glucometer
Integrated data in
Amazon RDS
AWS Glue for
transforming data
Transformed data
aggregated in Amazon
S3 to build a data lake
Transformed data in
Amazon RDS for
machine learning
Batch
Stream
Deep learning AMI
for training and
testing the machine
learning model
The Machine Learning
Model predicts if a
particular patient has
kidney disease or not
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Workshop Logistics
Prerequisites:
• Laptop with wireless internet connectivity and browser.
• AWS account, IAM user with Admin privileges.
• MySQL Database client like MySQL Workbench
• If you have an Android/IOS device, download the app “AWS IoT Button Dev”
• Code editor for python to view and modify code
• Familiarity with AWS services like CloudFormation, Lambda, RDS and EC2. Experience working with notebooks (like
Jupyter, Zepplin) is a plus.
Note:
• Time boxed Labs with instructions to help you get up and running
• You are divided into groups so help each other complete the labs. Help available in the room if needed
• IoT buttons are limited. Please share
• Have fun building on AWS!
Go to http://bit.ly/2ir4OyC to begin. Unzip the downloaded file which will create a new folder
diabetes_workshop. Open the file “1_Setting up the workshop.docx”
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Appendix
AWS IoT
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Data Integration: Challenges
Distributed sources
Data conformation and transformation
Data quality and profiling
Data pipelines and access/security
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Why Transform
The quality of the ML model is dependent on the data used to train.
• Clean data
• More data (more rows) means more accurate predictions
• More attributes (columns) means more patterns and relationship within the data can be
discovered
So, Transform Data to
• Filter out Uninformative Data
• Change Records With Feature Engineering
• Complete Missing values
Remember ……ML models are only as good as the data
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AWS
Glue
Managed Transform Engine
Job Scheduler
Data Catalog
Built on Apache Spark
Integrated with S3, RDS, Redshift &
any JDBC-compliant data store
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Glue Automates the undifferentiated
heavy lifting of ETL
 Cataloging data sources
 Identifying data formats and data types
 Generating Extract, Transform, Load code
 Executing ETL jobs; managing dependencies
 Handling errors
 Managing and scaling resources
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AWS Glue Components
Data Catalog
 Hive Metastore compatible with enhanced functionality
 Crawlers automatically extracts metadata and creates tables
 Integrated with Amazon Athena, Amazon Redshift Spectrum
Job Execution
 Run jobs on a serverless Spark platform
 Provides flexible scheduling
 Handles dependency resolution, monitoring and alerting
Job Authoring
 Auto-generates ETL code
 Build on open frameworks – Python and Spark
 Developer-centric – editing, debugging, sharing
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Consolidation of data into a Datalake
Data
scientists
Automation /
events
Business
users
Data
analysts
Engagement
platforms
1. More personas need access to data, through appropriate tools
2. More systems need to link to data for decision and process automation
3. Users need to be able to find information, and access it securely
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Expanded Architecture
Speed (Real-time)
Ingest ServingData
sources
Scale (Batch)
Data Warehouse
Amazon Redshift
Legacy Apps
Amazon RDS
Data analysts
Data scientists
Business users
Engagement platforms
Schemaless
Amazon ElasticSearch
Direct Query
Amazon Athena
Near-Zero Latency
Amazon DynamoDB
Automation / events
Amazon S3
Staged Data
(Data Lake)
Semi/Unstructured
Amazon EMR
Transactions
Web logs /
cookies
ERP
AWS Database
Migration
AWS Direct
Connect
Internet
Interfaces
Amazon
Kinesis
Connected
devices
Social media
Amazon S3
Raw Data Amazon EMR/ Glue
ETL
Advanced
Analytics
MLlib
Event Capture
Amazon Kinesis
Stream Analysis
Amazon EMR
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Machine Learning
Machine learning (ML) can help you use historical data to make better business decisions.
ML algorithms discover patterns in data and construct predictive models using these patterns.
Features engineering is a key step in machine learning.
Models are used to make predictions on future data.
Workshop: Predict kidney disease in diabetics.
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Models - Train , Test , and predict
A training dataset is a dataset of examples used for learning, that is to fit the parameters
A test dataset is a dataset that is independent of the training dataset, but that follows the same probability
distribution as the training dataset.
The training dataset often consist of pairs of an input vector and the corresponding answer vector or scalar,
which is commonly denoted as the target.
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Notebook documents are both human-readable documents
containing the analysis description and the results (figures, tables,
etc..) as well as executable documents which can be run to perform
data analysis.
Pandas is an open source, BSD-licensed library providing high-
performance, easy-to-use data structures and data analysis tools
for the Python programming language.
Deep learning denotes the modern incarnation of neural networks.
With distributed cloud computing and parallelism across GPU cores,
we can train models millions of times faster.
MXNet provides optimized numerical computation for GPUs and
distributed ecosystems, from the comfort of high-level
environments like Python and R
Deep Learning Tools
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Jupyter Notebook – Setup and Tunneling
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Jupyter Notebook – Pymysql - Database
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Jupyter Notebook – Grouping and
Aggregations
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Jupyter Notebook – Restrictions ,
Aggregations and Histograms
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Jupyter Notebook – Modelling
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
THANK YOU!
C L I C K T O A D D T E X T
C L I C K T O A D D T E X T

Más contenido relacionado

Más de Amazon Web Services

Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsMicrosoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsAmazon Web Services
 
Database Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareDatabase Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareAmazon Web Services
 
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSCrea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSAmazon Web Services
 
API moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAPI moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAmazon Web Services
 
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareDatabase Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareAmazon Web Services
 
Tools for building your MVP on AWS
Tools for building your MVP on AWSTools for building your MVP on AWS
Tools for building your MVP on AWSAmazon Web Services
 
How to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckHow to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckAmazon Web Services
 
Building a web application without servers
Building a web application without serversBuilding a web application without servers
Building a web application without serversAmazon Web Services
 
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...Amazon Web Services
 
Introduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceIntroduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceAmazon Web Services
 
Come costruire un'architettura Serverless nel Cloud AWS
Come costruire un'architettura Serverless nel Cloud AWSCome costruire un'architettura Serverless nel Cloud AWS
Come costruire un'architettura Serverless nel Cloud AWSAmazon Web Services
 
AWS Serverless per startup: come innovare senza preoccuparsi dei server
AWS Serverless per startup: come innovare senza preoccuparsi dei serverAWS Serverless per startup: come innovare senza preoccuparsi dei server
AWS Serverless per startup: come innovare senza preoccuparsi dei serverAmazon Web Services
 
Crea dashboard interattive con Amazon QuickSight
Crea dashboard interattive con Amazon QuickSightCrea dashboard interattive con Amazon QuickSight
Crea dashboard interattive con Amazon QuickSightAmazon Web Services
 
Costruisci modelli di Machine Learning con Amazon SageMaker Autopilot
Costruisci modelli di Machine Learning con Amazon SageMaker AutopilotCostruisci modelli di Machine Learning con Amazon SageMaker Autopilot
Costruisci modelli di Machine Learning con Amazon SageMaker AutopilotAmazon Web Services
 
Migra le tue file shares in cloud con FSx for Windows
Migra le tue file shares in cloud con FSx for Windows Migra le tue file shares in cloud con FSx for Windows
Migra le tue file shares in cloud con FSx for Windows Amazon Web Services
 
La tua organizzazione è pronta per adottare una strategia di cloud ibrido?
La tua organizzazione è pronta per adottare una strategia di cloud ibrido?La tua organizzazione è pronta per adottare una strategia di cloud ibrido?
La tua organizzazione è pronta per adottare una strategia di cloud ibrido?Amazon Web Services
 
Protect your applications from DDoS/BOT & Advanced Attacks
Protect your applications from DDoS/BOT & Advanced AttacksProtect your applications from DDoS/BOT & Advanced Attacks
Protect your applications from DDoS/BOT & Advanced AttacksAmazon Web Services
 
Track 6 Session 6_ 透過 AWS AI 服務模擬、部署機器人於產業之應用
Track 6 Session 6_ 透過 AWS AI 服務模擬、部署機器人於產業之應用Track 6 Session 6_ 透過 AWS AI 服務模擬、部署機器人於產業之應用
Track 6 Session 6_ 透過 AWS AI 服務模擬、部署機器人於產業之應用Amazon Web Services
 

Más de Amazon Web Services (20)

Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsMicrosoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
 
Computer Vision con AWS
Computer Vision con AWSComputer Vision con AWS
Computer Vision con AWS
 
Database Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareDatabase Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatare
 
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSCrea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
 
API moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAPI moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e web
 
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareDatabase Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
 
Tools for building your MVP on AWS
Tools for building your MVP on AWSTools for building your MVP on AWS
Tools for building your MVP on AWS
 
How to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckHow to Build a Winning Pitch Deck
How to Build a Winning Pitch Deck
 
Building a web application without servers
Building a web application without serversBuilding a web application without servers
Building a web application without servers
 
Fundraising Essentials
Fundraising EssentialsFundraising Essentials
Fundraising Essentials
 
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
 
Introduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceIntroduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container Service
 
Come costruire un'architettura Serverless nel Cloud AWS
Come costruire un'architettura Serverless nel Cloud AWSCome costruire un'architettura Serverless nel Cloud AWS
Come costruire un'architettura Serverless nel Cloud AWS
 
AWS Serverless per startup: come innovare senza preoccuparsi dei server
AWS Serverless per startup: come innovare senza preoccuparsi dei serverAWS Serverless per startup: come innovare senza preoccuparsi dei server
AWS Serverless per startup: come innovare senza preoccuparsi dei server
 
Crea dashboard interattive con Amazon QuickSight
Crea dashboard interattive con Amazon QuickSightCrea dashboard interattive con Amazon QuickSight
Crea dashboard interattive con Amazon QuickSight
 
Costruisci modelli di Machine Learning con Amazon SageMaker Autopilot
Costruisci modelli di Machine Learning con Amazon SageMaker AutopilotCostruisci modelli di Machine Learning con Amazon SageMaker Autopilot
Costruisci modelli di Machine Learning con Amazon SageMaker Autopilot
 
Migra le tue file shares in cloud con FSx for Windows
Migra le tue file shares in cloud con FSx for Windows Migra le tue file shares in cloud con FSx for Windows
Migra le tue file shares in cloud con FSx for Windows
 
La tua organizzazione è pronta per adottare una strategia di cloud ibrido?
La tua organizzazione è pronta per adottare una strategia di cloud ibrido?La tua organizzazione è pronta per adottare una strategia di cloud ibrido?
La tua organizzazione è pronta per adottare una strategia di cloud ibrido?
 
Protect your applications from DDoS/BOT & Advanced Attacks
Protect your applications from DDoS/BOT & Advanced AttacksProtect your applications from DDoS/BOT & Advanced Attacks
Protect your applications from DDoS/BOT & Advanced Attacks
 
Track 6 Session 6_ 透過 AWS AI 服務模擬、部署機器人於產業之應用
Track 6 Session 6_ 透過 AWS AI 服務模擬、部署機器人於產業之應用Track 6 Session 6_ 透過 AWS AI 服務模擬、部署機器人於產業之應用
Track 6 Session 6_ 透過 AWS AI 服務模擬、部署機器人於產業之應用
 

HLC303-Transform Chronic Conditions Analysis with AWS Stream, Cohort, and Machine Learning

  • 1. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS re:INVENT Transform Chronic Conditions Analysis with AWS: Stream, Cohort, and Machine Learning U j j w a l R a t a n a n d N a v n e e t S r i v a s t a v a H L C 3 0 3 N o v e m b e r 2 7 , 2 0 1 7
  • 2. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Problem Statement Help identify and predict cohorts of chronic diabetes patients who may encounter a kidney related problem.
  • 3. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Why Is This Important? • Diabetes mellitus, usually called diabetes, is a disease in which the body does not make enough insulin, thereby increasing blood sugar levels. • About 30 percent of patients with Type 1 (juvenile onset) diabetes and 10 to 40 percent of those with Type 2 (adult onset) diabetes eventually will suffer from kidney failure.** • Our goal is to find the indicators that drives high chances of getting kidney failure. • This will allow targeted interventions in patients who demonstrate these indicators to reduce the risk of kidney problems. **Reference : https://www.kidney.org/atoz/content/diabetes
  • 4. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. The Business Flow Identify case and control groups Gather data from Glucometer Transform data Explore Features and Apply deep learning Analyze and visualize the data Patient Dataset Intervention Drive Changes
  • 5. The Technical Flow Clinical Records Glucometer (IoT Button) AWS IoT ingests lab values from the glucometer Integrated data in Amazon RDS AWS Glue for transforming data Transformed data aggregated in Amazon S3 to build a data lake Transformed data in Amazon RDS for machine learning Batch Stream Deep learning AMI for training and testing the machine learning model The Machine Learning Model predicts if a particular patient has kidney disease or not
  • 6. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Workshop Logistics Prerequisites: • Laptop with wireless internet connectivity and browser. • AWS account, IAM user with Admin privileges. • MySQL Database client like MySQL Workbench • If you have an Android/IOS device, download the app “AWS IoT Button Dev” • Code editor for python to view and modify code • Familiarity with AWS services like CloudFormation, Lambda, RDS and EC2. Experience working with notebooks (like Jupyter, Zepplin) is a plus. Note: • Time boxed Labs with instructions to help you get up and running • You are divided into groups so help each other complete the labs. Help available in the room if needed • IoT buttons are limited. Please share • Have fun building on AWS! Go to http://bit.ly/2ir4OyC to begin. Unzip the downloaded file which will create a new folder diabetes_workshop. Open the file “1_Setting up the workshop.docx”
  • 7. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Appendix
  • 9. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Data Integration: Challenges Distributed sources Data conformation and transformation Data quality and profiling Data pipelines and access/security
  • 10. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Why Transform The quality of the ML model is dependent on the data used to train. • Clean data • More data (more rows) means more accurate predictions • More attributes (columns) means more patterns and relationship within the data can be discovered So, Transform Data to • Filter out Uninformative Data • Change Records With Feature Engineering • Complete Missing values Remember ……ML models are only as good as the data
  • 11. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS Glue Managed Transform Engine Job Scheduler Data Catalog Built on Apache Spark Integrated with S3, RDS, Redshift & any JDBC-compliant data store
  • 12. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Glue Automates the undifferentiated heavy lifting of ETL  Cataloging data sources  Identifying data formats and data types  Generating Extract, Transform, Load code  Executing ETL jobs; managing dependencies  Handling errors  Managing and scaling resources
  • 13. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS Glue Components Data Catalog  Hive Metastore compatible with enhanced functionality  Crawlers automatically extracts metadata and creates tables  Integrated with Amazon Athena, Amazon Redshift Spectrum Job Execution  Run jobs on a serverless Spark platform  Provides flexible scheduling  Handles dependency resolution, monitoring and alerting Job Authoring  Auto-generates ETL code  Build on open frameworks – Python and Spark  Developer-centric – editing, debugging, sharing
  • 14. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Consolidation of data into a Datalake Data scientists Automation / events Business users Data analysts Engagement platforms 1. More personas need access to data, through appropriate tools 2. More systems need to link to data for decision and process automation 3. Users need to be able to find information, and access it securely
  • 15. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Expanded Architecture Speed (Real-time) Ingest ServingData sources Scale (Batch) Data Warehouse Amazon Redshift Legacy Apps Amazon RDS Data analysts Data scientists Business users Engagement platforms Schemaless Amazon ElasticSearch Direct Query Amazon Athena Near-Zero Latency Amazon DynamoDB Automation / events Amazon S3 Staged Data (Data Lake) Semi/Unstructured Amazon EMR Transactions Web logs / cookies ERP AWS Database Migration AWS Direct Connect Internet Interfaces Amazon Kinesis Connected devices Social media Amazon S3 Raw Data Amazon EMR/ Glue ETL Advanced Analytics MLlib Event Capture Amazon Kinesis Stream Analysis Amazon EMR
  • 16. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Machine Learning Machine learning (ML) can help you use historical data to make better business decisions. ML algorithms discover patterns in data and construct predictive models using these patterns. Features engineering is a key step in machine learning. Models are used to make predictions on future data. Workshop: Predict kidney disease in diabetics.
  • 17. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Models - Train , Test , and predict A training dataset is a dataset of examples used for learning, that is to fit the parameters A test dataset is a dataset that is independent of the training dataset, but that follows the same probability distribution as the training dataset. The training dataset often consist of pairs of an input vector and the corresponding answer vector or scalar, which is commonly denoted as the target.
  • 18. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Notebook documents are both human-readable documents containing the analysis description and the results (figures, tables, etc..) as well as executable documents which can be run to perform data analysis. Pandas is an open source, BSD-licensed library providing high- performance, easy-to-use data structures and data analysis tools for the Python programming language. Deep learning denotes the modern incarnation of neural networks. With distributed cloud computing and parallelism across GPU cores, we can train models millions of times faster. MXNet provides optimized numerical computation for GPUs and distributed ecosystems, from the comfort of high-level environments like Python and R Deep Learning Tools
  • 19. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Jupyter Notebook – Setup and Tunneling
  • 20. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Jupyter Notebook – Pymysql - Database
  • 21. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Jupyter Notebook – Grouping and Aggregations
  • 22. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Jupyter Notebook – Restrictions , Aggregations and Histograms
  • 23. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Jupyter Notebook – Modelling
  • 24. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. THANK YOU! C L I C K T O A D D T E X T C L I C K T O A D D T E X T