CSE 163
Memory
��Hunter Schafer
Memory
Just a big array/list to store values
2
Objects
3
Memory Hierarchy
4
Disk Drive
5
Takeaways
6
CSE 163
Mid-Quarter Review
��Hunter Schafer
Overview
What is this class?
Competencies
8
Quarter �So Far
Competencies: Program | Data | Data Sci. | Comp Sci.
9
0 - Intro to Python
Summary
Learn the basics how how to write Python programs
Topics: Program
10
1 - Python cont. + Data Structures
Summary
Learn more advanced Python concepts including how to represent data in data structures. Process our first type of data called CSV.
Topics: Program | Data
11
[
{'name': 'Seattle', 'magnitude': 4},
{'name': 'Genovia', 'magnitude': 6},
{'name': 'Seattle', 'magnitude': 3.5}
]
2 - Pandas
Summary
Learn our first data science library, pandas, to help process CSVs.
Topics: Data | Data Sci.
12
3 - Data Science Libraries
Summary
Learn other common libraries for data science. Learned the principles of data visualization (seaborn) and machine learning (scikit-learn).
Topics: Data Sci.
13
4 - Classes, Objects, and Modules
Summary
A new way of organizing our code into objects with state and behavior.
Topics: Program | Data
14
5 - Efficiency
Summary
How to understand the efficiency of our programs.
Topics: Comp. Sci.
15
CSE 163
Requests
��Hunter Schafer
Internet
Allows computers to talk to each other to communicate data
One way to use the internet is to use a browser (e.g. Google Chrome) to browse web-pages.
Everything is determined by a URL that identifies
17
Resources
In most cases, a URL specifies either
18
API Demo
For this example, we used the Open-Notify API
19
HTML
A website is actually just text that’s in a very special format: HTML
Basic idea:
20
HTML Tags
Generally, we use an open tag and a close tag to say indicate everything inside belongs to that type of data:
Wikipedia > View Source
21
<p>This is a paragraph.</p>
Here is an image: <img src=”dog.jpg”>
<p>
This is another paragraph but it has a
<a href=”http://www.puppies.com”>link</a>!
</p>