-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Data Analysis with Python Notion notes
- Loading branch information
Showing
10 changed files
with
439 additions
and
1 deletion.
There are no files selected for viewing
File renamed without changes.
51 changes: 51 additions & 0 deletions
51
notion/coursera/ibm-data-analysis/data-analysis-with-python/index.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
var container = document.getElementById("data-analysis-with-python-modules"); | ||
|
||
const importingDataSets = new PageLinkItem( | ||
1, | ||
"Importing Data Sets", | ||
"Details about importing data sets for analysis.", | ||
"https://media.aykhan.net/thumbnails/notion/coursera/ibm/ibm-data-analysis/data-analysis-with-python.png", | ||
"https://aykhan.net/notion/coursera/ibm-data-analysis/data-analysis-with-python/module-1" | ||
); | ||
|
||
const dataWrangling = new PageLinkItem( | ||
2, | ||
"Data Wrangling", | ||
"Techniques for cleaning and organizing data.", | ||
"https://media.aykhan.net/thumbnails/notion/coursera/ibm/ibm-data-analysis/data-analysis-with-python.png", | ||
"https://aykhan.net/notion/coursera/ibm-data-analysis/data-analysis-with-python/module-2" | ||
); | ||
|
||
const exploratoryDataAnalysis = new PageLinkItem( | ||
3, | ||
"Exploratory Data Analysis", | ||
"Methods for exploring and understanding data.", | ||
"https://media.aykhan.net/thumbnails/notion/coursera/ibm/ibm-data-analysis/data-analysis-with-python.png", | ||
"https://aykhan.net/notion/coursera/ibm-data-analysis/data-analysis-with-python/module-3" | ||
); | ||
|
||
const modelDevelopment = new PageLinkItem( | ||
4, | ||
"Model Development", | ||
"Processes for developing data models.", | ||
"https://media.aykhan.net/thumbnails/notion/coursera/ibm/ibm-data-analysis/data-analysis-with-python.png", | ||
"https://aykhan.net/notion/coursera/ibm-data-analysis/data-analysis-with-python/module-4" | ||
); | ||
|
||
const modelEvaluationAndRefinement = new PageLinkItem( | ||
5, | ||
"Model Evaluation and Refinement", | ||
"Techniques for evaluating and refining data models.", | ||
"https://media.aykhan.net/thumbnails/notion/coursera/ibm/ibm-data-analysis/data-analysis-with-python.png", | ||
"https://aykhan.net/notion/coursera/ibm-data-analysis/data-analysis-with-python/module-5" | ||
); | ||
|
||
const modules = [ | ||
importingDataSets, | ||
dataWrangling, | ||
exploratoryDataAnalysis, | ||
modelDevelopment, | ||
modelEvaluationAndRefinement | ||
]; | ||
|
||
addItemsToContainer(container, modules); |
73 changes: 73 additions & 0 deletions
73
notion/coursera/ibm-data-analysis/data-analysis-with-python/module-1/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Data Analysis with Python | Module 1: Importing Data Sets | aykhan.net</title> | ||
<meta name="description" content="Data Analysis with Python | Module 1: Importing Data Sets | aykhan.net"> | ||
<link rel="icon" type="image/x-icon" href="https://res.cloudinary.com/dbriqxpaa/image/upload/v1680096853/Logo/logo-xl-ico_qzbf7d.ico" /> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" /> | ||
<link rel="stylesheet" href="/home/css/application.css"> | ||
<link rel="stylesheet" href="/home/css/variables.css"> | ||
<style> | ||
html, body { | ||
margin: 0; | ||
padding: 0; | ||
height: 100%; | ||
overflow: hidden; | ||
} | ||
|
||
.content { | ||
height: 100vh; | ||
overflow: hidden; | ||
width: 100%; | ||
position: relative; | ||
} | ||
|
||
.section-text-mask { | ||
display: flex; | ||
flex-direction: column; | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
.section-title, .section-subtitle { | ||
padding: 15px 5px; | ||
margin: 0; | ||
} | ||
|
||
.iframe-container { | ||
height: 92vh; | ||
overflow: hidden; | ||
padding: 15px; | ||
} | ||
|
||
iframe { | ||
width: 100%; | ||
height: 100%; | ||
border: 0; | ||
margin-top: -50px; | ||
padding-left: 17px; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<section class="case-studies" itemscope itemprop="mainContentOfPage" class="case-studies-section" style="width:100%;padding: 2% 0%;"> | ||
<div class="section-mask"></div> | ||
<div class="content"> | ||
<div class="section-text-mask"> | ||
<h4 class="h5 section-subtitle">Data Analysis with Python</h4> | ||
</div> | ||
<div class="section-text-mask"> | ||
<h2 class="h3 section-title">Module 1: Importing Data Sets</h2> | ||
</div> | ||
<div class="iframe-container"> | ||
<iframe id="iframeContent" src="https://media.aykhan.net/notion-pages/data-analysis-with-python/module-1/index.html"></iframe> | ||
</div> | ||
</div> | ||
</section> | ||
</body> | ||
|
||
</html> |
73 changes: 73 additions & 0 deletions
73
notion/coursera/ibm-data-analysis/data-analysis-with-python/module-2/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Data Analysis with Python | Module 2: Data Wrangling | aykhan.net</title> | ||
<meta name="description" content="Data Analysis with Python | Module 2: Data Wrangling | aykhan.net"> | ||
<link rel="icon" type="image/x-icon" href="https://res.cloudinary.com/dbriqxpaa/image/upload/v1680096853/Logo/logo-xl-ico_qzbf7d.ico" /> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" /> | ||
<link rel="stylesheet" href="/home/css/application.css"> | ||
<link rel="stylesheet" href="/home/css/variables.css"> | ||
<style> | ||
html, body { | ||
margin: 0; | ||
padding: 0; | ||
height: 100%; | ||
overflow: hidden; | ||
} | ||
|
||
.content { | ||
height: 100vh; | ||
overflow: hidden; | ||
width: 100%; | ||
position: relative; | ||
} | ||
|
||
.section-text-mask { | ||
display: flex; | ||
flex-direction: column; | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
.section-title, .section-subtitle { | ||
padding: 15px 5px; | ||
margin: 0; | ||
} | ||
|
||
.iframe-container { | ||
height: 92vh; | ||
overflow: hidden; | ||
padding: 15px; | ||
} | ||
|
||
iframe { | ||
width: 100%; | ||
height: 100%; | ||
border: 0; | ||
margin-top: -50px; | ||
padding-left: 17px; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<section class="case-studies" itemscope itemprop="mainContentOfPage" class="case-studies-section" style="width:100%;padding: 2% 0%;"> | ||
<div class="section-mask"></div> | ||
<div class="content"> | ||
<div class="section-text-mask"> | ||
<h4 class="h5 section-subtitle">Data Analysis with Python</h4> | ||
</div> | ||
<div class="section-text-mask"> | ||
<h2 class="h3 section-title">Module 2: Data Wrangling</h2> | ||
</div> | ||
<div class="iframe-container"> | ||
<iframe id="iframeContent" src="https://media.aykhan.net/notion-pages/data-analysis-with-python/module-2/index.html"></iframe> | ||
</div> | ||
</div> | ||
</section> | ||
</body> | ||
|
||
</html> |
73 changes: 73 additions & 0 deletions
73
notion/coursera/ibm-data-analysis/data-analysis-with-python/module-3/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Data Analysis with Python | Module 3: Exploratory Data Analysis | aykhan.net</title> | ||
<meta name="description" content="Data Analysis with Python | Module 3: Exploratory Data Analysis | aykhan.net"> | ||
<link rel="icon" type="image/x-icon" href="https://res.cloudinary.com/dbriqxpaa/image/upload/v1680096853/Logo/logo-xl-ico_qzbf7d.ico" /> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" /> | ||
<link rel="stylesheet" href="/home/css/application.css"> | ||
<link rel="stylesheet" href="/home/css/variables.css"> | ||
<style> | ||
html, body { | ||
margin: 0; | ||
padding: 0; | ||
height: 100%; | ||
overflow: hidden; | ||
} | ||
|
||
.content { | ||
height: 100vh; | ||
overflow: hidden; | ||
width: 100%; | ||
position: relative; | ||
} | ||
|
||
.section-text-mask { | ||
display: flex; | ||
flex-direction: column; | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
.section-title, .section-subtitle { | ||
padding: 15px 5px; | ||
margin: 0; | ||
} | ||
|
||
.iframe-container { | ||
height: 92vh; | ||
overflow: hidden; | ||
padding: 15px; | ||
} | ||
|
||
iframe { | ||
width: 100%; | ||
height: 100%; | ||
border: 0; | ||
margin-top: -50px; | ||
padding-left: 17px; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<section class="case-studies" itemscope itemprop="mainContentOfPage" class="case-studies-section" style="width:100%;padding: 2% 0%;"> | ||
<div class="section-mask"></div> | ||
<div class="content"> | ||
<div class="section-text-mask"> | ||
<h4 class="h5 section-subtitle">Data Analysis with Python</h4> | ||
</div> | ||
<div class="section-text-mask"> | ||
<h2 class="h3 section-title">Module 3: Exploratory Data Analysis</h2> | ||
</div> | ||
<div class="iframe-container"> | ||
<iframe id="iframeContent" src="https://media.aykhan.net/notion-pages/data-analysis-with-python/module-3/index.html"></iframe> | ||
</div> | ||
</div> | ||
</section> | ||
</body> | ||
|
||
</html> |
73 changes: 73 additions & 0 deletions
73
notion/coursera/ibm-data-analysis/data-analysis-with-python/module-4/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Data Analysis with Python | Module 4: Model Development | aykhan.net</title> | ||
<meta name="description" content="Data Analysis with Python | Module 4: Model Development | aykhan.net"> | ||
<link rel="icon" type="image/x-icon" href="https://res.cloudinary.com/dbriqxpaa/image/upload/v1680096853/Logo/logo-xl-ico_qzbf7d.ico" /> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" /> | ||
<link rel="stylesheet" href="/home/css/application.css"> | ||
<link rel="stylesheet" href="/home/css/variables.css"> | ||
<style> | ||
html, body { | ||
margin: 0; | ||
padding: 0; | ||
height: 100%; | ||
overflow: hidden; | ||
} | ||
|
||
.content { | ||
height: 100vh; | ||
overflow: hidden; | ||
width: 100%; | ||
position: relative; | ||
} | ||
|
||
.section-text-mask { | ||
display: flex; | ||
flex-direction: column; | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
.section-title, .section-subtitle { | ||
padding: 15px 5px; | ||
margin: 0; | ||
} | ||
|
||
.iframe-container { | ||
height: 92vh; | ||
overflow: hidden; | ||
padding: 15px; | ||
} | ||
|
||
iframe { | ||
width: 100%; | ||
height: 100%; | ||
border: 0; | ||
margin-top: -50px; | ||
padding-left: 17px; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<section class="case-studies" itemscope itemprop="mainContentOfPage" class="case-studies-section" style="width:100%;padding: 2% 0%;"> | ||
<div class="section-mask"></div> | ||
<div class="content"> | ||
<div class="section-text-mask"> | ||
<h4 class="h5 section-subtitle">Data Analysis with Python</h4> | ||
</div> | ||
<div class="section-text-mask"> | ||
<h2 class="h3 section-title">Module 4: Model Development</h2> | ||
</div> | ||
<div class="iframe-container"> | ||
<iframe id="iframeContent" src="https://media.aykhan.net/notion-pages/data-analysis-with-python/module-4/index.html"></iframe> | ||
</div> | ||
</div> | ||
</section> | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.