forked from CinderZhang/FinnData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweek6-1.html
58 lines (48 loc) · 2.22 KB
/
week6-1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Week 6: Dictionaries and Sets in Python</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<h2>Week 6: Pandas</h2>
<h3>Learning Objectives:</h3>
<ul>
<li>Install and Understand the concept of Pandas Python.</li>
<li>Learn how to work with Pandas.</li>
<li>Understand the use cases for Pandas.</li>
</ul>
<h3>Materials:</h3>
<h4>1. Install and intro</h4>
<p>Learn how to install Pandas in Python.</p>
<a href="https://pandas.pydata.org/" target="_blank">Read more about Pandas in Python</a>
<br>
<a href="https://pypi.org/project/pandas-llm/" target="_blank">Read more about Pandas-LLM</a>
<h4>2. Start with in Pandas</h4>
<p>Learn Pandas in Python.</p>
<a href="https://pandas.pydata.org/docs/user_guide/10min.html#min" target="_blank">Start with Pandas</a>
<h4>3. Pandas for Finance</h4>
<p>Pandas for Finance.</p>
<a href="https://github.com/PacktPublishing/Mastering-Pandas-for-Finances" target="_blank">Mastering Pandas for Finance</a>
<br>
<h4>4. Data for Finance</h4>
<p>Data for Finance.</p>
<a href="https://github.com/CinderZhang/DataAnalytics" target="_blank">Data source for Finance and more</a>
<br>
<h3>Exercises:</h3>
<p>Complete the following exercises to practice your skills in Pandas.</p>
<a href="https://www.w3resource.com/python-exercises/pandas/index.php" target="_blank">Pandas Exercises</a>
</div>
<div style="text-align: center; margin-top: 20px;">
<a href="week5.html">← Previous Week</a>
|
<a href="week7.html">Next Week →</a>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</body>
</html>