發表文章

Data Analysis Using Python - University of Pennsylvania

圖片
Data Analysis Using Python - a course by the University of Pennsylvania  My dairy about the journey of studies: Instructor: Brandon Krakowsky Coursera Course - Data Analysis Using Python Part of Introduction to Programming with Python and Java Specialization   Data Analysis Using Python - Part 1 of "Introduction to Programming with Python and Java Specialization" Module 1: Loading, Querying, Filtering Data using the csv Module                  Module 1 - (3) Importing and reading a file using the csv module Loading Data: Download and install Anaconda (Python 3 + Jupyter Notebook all at once) Quiz 1: Quiz 2: The correct answer is: ✅ filtered_flights = [row for row in flights if row["Departure"] == "Philadelphia" and row["Destination"] == "Los Angeles" and float(row["Price"]) < 1200] Run Module 1 - Lab 1 - Work with ufo sightings data  (hints: better to create your own github account and "fork" the whole project spa...