├── .gitignore ├── .rmotr ├── README.md ├── requirements.txt ├── travis.yml └── unit-1-reading-data-with-python-and-pandas ├── .rmotr ├── README.md ├── lesson-1-reading-csv-and-txt-files ├── .rmotr ├── README.md └── files │ ├── Lecture.ipynb │ ├── btc-market-price.csv │ └── exam_review.csv ├── lesson-10-artists-nested-biography ├── .rmotr ├── README.md ├── files │ └── artists.json ├── main.py ├── solutions │ └── solution_read_json.py └── tests │ ├── test_artists_1.py │ ├── test_artists_2.py │ ├── test_biography_1.py │ ├── test_biography_2.py │ └── test_biography_3.py ├── lesson-11-reading-data-from-relational-databases ├── .rmotr ├── README.md └── files │ ├── Lecture.ipynb │ └── chinook.db ├── lesson-12-vancouver-crime-information ├── .rmotr ├── README.md ├── files │ └── van_crime_2003.sql ├── main.py ├── solutions │ └── solution_van_crimes_sql.py └── tests │ ├── test_crimes_1.py │ ├── test_crimes_2.py │ ├── test_dangerous_month_1.py │ ├── test_dangerous_month_2.py │ ├── test_late_crimes_1.py │ └── test_late_crimes_2.py ├── lesson-13-querying-vancouver-crimes ├── .rmotr ├── README.md ├── files │ └── van_crime_2003.sql ├── main.py ├── solutions │ └── solution_van_crimes.py └── tests │ ├── test_crime_types_1.py │ ├── test_crime_types_2.py │ ├── test_crime_types_3.py │ ├── test_crimes_1.py │ └── test_crimes_2.py ├── lesson-14-crypto-currency-database ├── .rmotr ├── README.md ├── files │ └── cryptos.sql ├── main.py ├── solutions │ └── solution_cryptos.py └── tests │ ├── test_cryptos_1.py │ ├── test_cryptos_2.py │ ├── test_weekly_change_1.py │ └── test_weekly_change_2.py ├── lesson-15-fetching-data-from-a-rest-api ├── .rmotr ├── README.md └── files │ └── Lecture.ipynb ├── lesson-16-discover-starwars-people ├── .rmotr ├── README.md ├── main.py ├── solutions │ └── solution_swapi.py └── tests │ ├── test_blue_eyed_people_1.py │ ├── test_blue_eyed_people_2.py │ ├── test_starwars_people_1.py │ └── test_starwars_people_2.py ├── lesson-17-reading-html-tables ├── .rmotr ├── README.md └── files │ └── Lecture.ipynb ├── lesson-18-get-fifa-players-from-the-web ├── .rmotr ├── README.md ├── files │ └── fifa_players.html ├── main.py ├── solutions │ └── solution_fifa.py └── tests │ ├── test_fifa_1.py │ ├── test_fifa_2.py │ └── test_most_hits.py ├── lesson-19-complementary-file-types-and-io-tools ├── .rmotr ├── README.md └── files │ ├── Lecture.ipynb │ ├── airline.sas7bdat │ └── broiler.dta ├── lesson-2-load-movies-dataset ├── .rmotr ├── README.md ├── files │ └── movies.csv ├── main.py ├── solutions │ └── solution_read_csv.py └── tests │ ├── test_score.py │ └── test_shape.py ├── lesson-3-advanced-parsing-on-movies-dataset ├── .rmotr ├── README.md ├── files │ └── movies.csv ├── main.py ├── solutions │ └── solution_read_csv.py └── tests │ ├── test_budget.py │ ├── test_country.py │ └── test_shape.py ├── lesson-4-tsv-with-the-simpsons-episodes ├── .rmotr ├── README.md ├── files │ └── simpsons-episodes.tsv ├── main.py ├── solutions │ └── solution_1.py └── tests │ ├── test_simpsons_columns.py │ ├── test_simpsons_item.py │ └── test_simpsons_shape.py ├── lesson-5-reading-excel-files ├── .rmotr ├── README.md └── files │ ├── Lecture.ipynb │ └── products.xlsx ├── lesson-6-reading-playstore-apps-excel-file ├── .rmotr ├── README.md ├── files │ └── playstore.xlsx ├── main.py ├── solutions │ └── solution_read_xlsx.py └── tests │ ├── test_last_updated_datetime.py │ ├── test_top25_index.py │ └── test_top25_shape.py ├── lesson-7-load-playstore-apps-excel-file-with-multiple-sheets ├── .rmotr ├── README.md ├── files │ └── playstore.xlsx ├── main.py ├── solutions │ └── solution_read_xlsx.py └── tests │ ├── test_content_id_1.py │ ├── test_content_id_2.py │ ├── test_playstore_1.py │ └── test_playstore_2.py ├── lesson-8-reading-json-files ├── .rmotr ├── README.md └── files │ ├── Lecture.ipynb │ ├── games.json │ └── users.json └── lesson-9-parse-artists-json-file ├── .rmotr ├── README.md ├── files └── artists.json ├── main.py ├── solutions └── solution_read_json.py └── tests ├── test_artists.py ├── test_index.py └── test_shape.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/.gitignore -------------------------------------------------------------------------------- /.rmotr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/.rmotr -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/requirements.txt -------------------------------------------------------------------------------- /travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/travis.yml -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/.rmotr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/.rmotr -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/README.md: -------------------------------------------------------------------------------- 1 | # Reading Data with Python and Pandas 2 | -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-1-reading-csv-and-txt-files/.rmotr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-1-reading-csv-and-txt-files/.rmotr -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-1-reading-csv-and-txt-files/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-1-reading-csv-and-txt-files/files/Lecture.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-1-reading-csv-and-txt-files/files/Lecture.ipynb -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-1-reading-csv-and-txt-files/files/btc-market-price.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-1-reading-csv-and-txt-files/files/btc-market-price.csv -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-1-reading-csv-and-txt-files/files/exam_review.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-1-reading-csv-and-txt-files/files/exam_review.csv -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-10-artists-nested-biography/.rmotr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-10-artists-nested-biography/.rmotr -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-10-artists-nested-biography/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-10-artists-nested-biography/README.md -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-10-artists-nested-biography/files/artists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-10-artists-nested-biography/files/artists.json -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-10-artists-nested-biography/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-10-artists-nested-biography/main.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-10-artists-nested-biography/solutions/solution_read_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-10-artists-nested-biography/solutions/solution_read_json.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-10-artists-nested-biography/tests/test_artists_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-10-artists-nested-biography/tests/test_artists_1.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-10-artists-nested-biography/tests/test_artists_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-10-artists-nested-biography/tests/test_artists_2.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-10-artists-nested-biography/tests/test_biography_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-10-artists-nested-biography/tests/test_biography_1.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-10-artists-nested-biography/tests/test_biography_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-10-artists-nested-biography/tests/test_biography_2.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-10-artists-nested-biography/tests/test_biography_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-10-artists-nested-biography/tests/test_biography_3.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-11-reading-data-from-relational-databases/.rmotr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-11-reading-data-from-relational-databases/.rmotr -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-11-reading-data-from-relational-databases/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-11-reading-data-from-relational-databases/files/Lecture.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-11-reading-data-from-relational-databases/files/Lecture.ipynb -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-11-reading-data-from-relational-databases/files/chinook.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-11-reading-data-from-relational-databases/files/chinook.db -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-12-vancouver-crime-information/.rmotr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-12-vancouver-crime-information/.rmotr -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-12-vancouver-crime-information/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-12-vancouver-crime-information/README.md -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-12-vancouver-crime-information/files/van_crime_2003.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-12-vancouver-crime-information/files/van_crime_2003.sql -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-12-vancouver-crime-information/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-12-vancouver-crime-information/main.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-12-vancouver-crime-information/solutions/solution_van_crimes_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-12-vancouver-crime-information/solutions/solution_van_crimes_sql.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-12-vancouver-crime-information/tests/test_crimes_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-12-vancouver-crime-information/tests/test_crimes_1.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-12-vancouver-crime-information/tests/test_crimes_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-12-vancouver-crime-information/tests/test_crimes_2.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-12-vancouver-crime-information/tests/test_dangerous_month_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-12-vancouver-crime-information/tests/test_dangerous_month_1.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-12-vancouver-crime-information/tests/test_dangerous_month_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-12-vancouver-crime-information/tests/test_dangerous_month_2.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-12-vancouver-crime-information/tests/test_late_crimes_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-12-vancouver-crime-information/tests/test_late_crimes_1.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-12-vancouver-crime-information/tests/test_late_crimes_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-12-vancouver-crime-information/tests/test_late_crimes_2.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-13-querying-vancouver-crimes/.rmotr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-13-querying-vancouver-crimes/.rmotr -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-13-querying-vancouver-crimes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-13-querying-vancouver-crimes/README.md -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-13-querying-vancouver-crimes/files/van_crime_2003.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-13-querying-vancouver-crimes/files/van_crime_2003.sql -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-13-querying-vancouver-crimes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-13-querying-vancouver-crimes/main.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-13-querying-vancouver-crimes/solutions/solution_van_crimes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-13-querying-vancouver-crimes/solutions/solution_van_crimes.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-13-querying-vancouver-crimes/tests/test_crime_types_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-13-querying-vancouver-crimes/tests/test_crime_types_1.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-13-querying-vancouver-crimes/tests/test_crime_types_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-13-querying-vancouver-crimes/tests/test_crime_types_2.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-13-querying-vancouver-crimes/tests/test_crime_types_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-13-querying-vancouver-crimes/tests/test_crime_types_3.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-13-querying-vancouver-crimes/tests/test_crimes_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-13-querying-vancouver-crimes/tests/test_crimes_1.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-13-querying-vancouver-crimes/tests/test_crimes_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-13-querying-vancouver-crimes/tests/test_crimes_2.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-14-crypto-currency-database/.rmotr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-14-crypto-currency-database/.rmotr -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-14-crypto-currency-database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-14-crypto-currency-database/README.md -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-14-crypto-currency-database/files/cryptos.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-14-crypto-currency-database/files/cryptos.sql -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-14-crypto-currency-database/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-14-crypto-currency-database/main.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-14-crypto-currency-database/solutions/solution_cryptos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-14-crypto-currency-database/solutions/solution_cryptos.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-14-crypto-currency-database/tests/test_cryptos_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-14-crypto-currency-database/tests/test_cryptos_1.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-14-crypto-currency-database/tests/test_cryptos_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-14-crypto-currency-database/tests/test_cryptos_2.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-14-crypto-currency-database/tests/test_weekly_change_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-14-crypto-currency-database/tests/test_weekly_change_1.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-14-crypto-currency-database/tests/test_weekly_change_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-14-crypto-currency-database/tests/test_weekly_change_2.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-15-fetching-data-from-a-rest-api/.rmotr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-15-fetching-data-from-a-rest-api/.rmotr -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-15-fetching-data-from-a-rest-api/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-15-fetching-data-from-a-rest-api/files/Lecture.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-15-fetching-data-from-a-rest-api/files/Lecture.ipynb -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-16-discover-starwars-people/.rmotr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-16-discover-starwars-people/.rmotr -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-16-discover-starwars-people/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-16-discover-starwars-people/README.md -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-16-discover-starwars-people/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-16-discover-starwars-people/main.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-16-discover-starwars-people/solutions/solution_swapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-16-discover-starwars-people/solutions/solution_swapi.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-16-discover-starwars-people/tests/test_blue_eyed_people_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-16-discover-starwars-people/tests/test_blue_eyed_people_1.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-16-discover-starwars-people/tests/test_blue_eyed_people_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-16-discover-starwars-people/tests/test_blue_eyed_people_2.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-16-discover-starwars-people/tests/test_starwars_people_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-16-discover-starwars-people/tests/test_starwars_people_1.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-16-discover-starwars-people/tests/test_starwars_people_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-16-discover-starwars-people/tests/test_starwars_people_2.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-17-reading-html-tables/.rmotr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-17-reading-html-tables/.rmotr -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-17-reading-html-tables/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-17-reading-html-tables/files/Lecture.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-17-reading-html-tables/files/Lecture.ipynb -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-18-get-fifa-players-from-the-web/.rmotr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-18-get-fifa-players-from-the-web/.rmotr -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-18-get-fifa-players-from-the-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-18-get-fifa-players-from-the-web/README.md -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-18-get-fifa-players-from-the-web/files/fifa_players.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-18-get-fifa-players-from-the-web/files/fifa_players.html -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-18-get-fifa-players-from-the-web/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-18-get-fifa-players-from-the-web/main.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-18-get-fifa-players-from-the-web/solutions/solution_fifa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-18-get-fifa-players-from-the-web/solutions/solution_fifa.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-18-get-fifa-players-from-the-web/tests/test_fifa_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-18-get-fifa-players-from-the-web/tests/test_fifa_1.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-18-get-fifa-players-from-the-web/tests/test_fifa_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-18-get-fifa-players-from-the-web/tests/test_fifa_2.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-18-get-fifa-players-from-the-web/tests/test_most_hits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-18-get-fifa-players-from-the-web/tests/test_most_hits.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-19-complementary-file-types-and-io-tools/.rmotr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-19-complementary-file-types-and-io-tools/.rmotr -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-19-complementary-file-types-and-io-tools/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-19-complementary-file-types-and-io-tools/files/Lecture.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-19-complementary-file-types-and-io-tools/files/Lecture.ipynb -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-19-complementary-file-types-and-io-tools/files/airline.sas7bdat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-19-complementary-file-types-and-io-tools/files/airline.sas7bdat -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-19-complementary-file-types-and-io-tools/files/broiler.dta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-19-complementary-file-types-and-io-tools/files/broiler.dta -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-2-load-movies-dataset/.rmotr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-2-load-movies-dataset/.rmotr -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-2-load-movies-dataset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-2-load-movies-dataset/README.md -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-2-load-movies-dataset/files/movies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-2-load-movies-dataset/files/movies.csv -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-2-load-movies-dataset/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-2-load-movies-dataset/main.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-2-load-movies-dataset/solutions/solution_read_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-2-load-movies-dataset/solutions/solution_read_csv.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-2-load-movies-dataset/tests/test_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-2-load-movies-dataset/tests/test_score.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-2-load-movies-dataset/tests/test_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-2-load-movies-dataset/tests/test_shape.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-3-advanced-parsing-on-movies-dataset/.rmotr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-3-advanced-parsing-on-movies-dataset/.rmotr -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-3-advanced-parsing-on-movies-dataset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-3-advanced-parsing-on-movies-dataset/README.md -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-3-advanced-parsing-on-movies-dataset/files/movies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-3-advanced-parsing-on-movies-dataset/files/movies.csv -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-3-advanced-parsing-on-movies-dataset/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-3-advanced-parsing-on-movies-dataset/main.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-3-advanced-parsing-on-movies-dataset/solutions/solution_read_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-3-advanced-parsing-on-movies-dataset/solutions/solution_read_csv.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-3-advanced-parsing-on-movies-dataset/tests/test_budget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-3-advanced-parsing-on-movies-dataset/tests/test_budget.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-3-advanced-parsing-on-movies-dataset/tests/test_country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-3-advanced-parsing-on-movies-dataset/tests/test_country.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-3-advanced-parsing-on-movies-dataset/tests/test_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-3-advanced-parsing-on-movies-dataset/tests/test_shape.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-4-tsv-with-the-simpsons-episodes/.rmotr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-4-tsv-with-the-simpsons-episodes/.rmotr -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-4-tsv-with-the-simpsons-episodes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-4-tsv-with-the-simpsons-episodes/README.md -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-4-tsv-with-the-simpsons-episodes/files/simpsons-episodes.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-4-tsv-with-the-simpsons-episodes/files/simpsons-episodes.tsv -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-4-tsv-with-the-simpsons-episodes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-4-tsv-with-the-simpsons-episodes/main.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-4-tsv-with-the-simpsons-episodes/solutions/solution_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-4-tsv-with-the-simpsons-episodes/solutions/solution_1.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-4-tsv-with-the-simpsons-episodes/tests/test_simpsons_columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-4-tsv-with-the-simpsons-episodes/tests/test_simpsons_columns.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-4-tsv-with-the-simpsons-episodes/tests/test_simpsons_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-4-tsv-with-the-simpsons-episodes/tests/test_simpsons_item.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-4-tsv-with-the-simpsons-episodes/tests/test_simpsons_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-4-tsv-with-the-simpsons-episodes/tests/test_simpsons_shape.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-5-reading-excel-files/.rmotr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-5-reading-excel-files/.rmotr -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-5-reading-excel-files/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-5-reading-excel-files/files/Lecture.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-5-reading-excel-files/files/Lecture.ipynb -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-5-reading-excel-files/files/products.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-5-reading-excel-files/files/products.xlsx -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-6-reading-playstore-apps-excel-file/.rmotr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-6-reading-playstore-apps-excel-file/.rmotr -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-6-reading-playstore-apps-excel-file/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-6-reading-playstore-apps-excel-file/README.md -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-6-reading-playstore-apps-excel-file/files/playstore.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-6-reading-playstore-apps-excel-file/files/playstore.xlsx -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-6-reading-playstore-apps-excel-file/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-6-reading-playstore-apps-excel-file/main.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-6-reading-playstore-apps-excel-file/solutions/solution_read_xlsx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-6-reading-playstore-apps-excel-file/solutions/solution_read_xlsx.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-6-reading-playstore-apps-excel-file/tests/test_last_updated_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-6-reading-playstore-apps-excel-file/tests/test_last_updated_datetime.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-6-reading-playstore-apps-excel-file/tests/test_top25_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-6-reading-playstore-apps-excel-file/tests/test_top25_index.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-6-reading-playstore-apps-excel-file/tests/test_top25_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-6-reading-playstore-apps-excel-file/tests/test_top25_shape.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-7-load-playstore-apps-excel-file-with-multiple-sheets/.rmotr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-7-load-playstore-apps-excel-file-with-multiple-sheets/.rmotr -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-7-load-playstore-apps-excel-file-with-multiple-sheets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-7-load-playstore-apps-excel-file-with-multiple-sheets/README.md -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-7-load-playstore-apps-excel-file-with-multiple-sheets/files/playstore.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-7-load-playstore-apps-excel-file-with-multiple-sheets/files/playstore.xlsx -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-7-load-playstore-apps-excel-file-with-multiple-sheets/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-7-load-playstore-apps-excel-file-with-multiple-sheets/main.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-7-load-playstore-apps-excel-file-with-multiple-sheets/solutions/solution_read_xlsx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-7-load-playstore-apps-excel-file-with-multiple-sheets/solutions/solution_read_xlsx.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-7-load-playstore-apps-excel-file-with-multiple-sheets/tests/test_content_id_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-7-load-playstore-apps-excel-file-with-multiple-sheets/tests/test_content_id_1.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-7-load-playstore-apps-excel-file-with-multiple-sheets/tests/test_content_id_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-7-load-playstore-apps-excel-file-with-multiple-sheets/tests/test_content_id_2.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-7-load-playstore-apps-excel-file-with-multiple-sheets/tests/test_playstore_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-7-load-playstore-apps-excel-file-with-multiple-sheets/tests/test_playstore_1.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-7-load-playstore-apps-excel-file-with-multiple-sheets/tests/test_playstore_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-7-load-playstore-apps-excel-file-with-multiple-sheets/tests/test_playstore_2.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-8-reading-json-files/.rmotr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-8-reading-json-files/.rmotr -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-8-reading-json-files/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-8-reading-json-files/files/Lecture.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-8-reading-json-files/files/Lecture.ipynb -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-8-reading-json-files/files/games.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-8-reading-json-files/files/games.json -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-8-reading-json-files/files/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-8-reading-json-files/files/users.json -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-9-parse-artists-json-file/.rmotr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-9-parse-artists-json-file/.rmotr -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-9-parse-artists-json-file/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-9-parse-artists-json-file/README.md -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-9-parse-artists-json-file/files/artists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-9-parse-artists-json-file/files/artists.json -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-9-parse-artists-json-file/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-9-parse-artists-json-file/main.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-9-parse-artists-json-file/solutions/solution_read_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-9-parse-artists-json-file/solutions/solution_read_json.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-9-parse-artists-json-file/tests/test_artists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-9-parse-artists-json-file/tests/test_artists.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-9-parse-artists-json-file/tests/test_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-9-parse-artists-json-file/tests/test_index.py -------------------------------------------------------------------------------- /unit-1-reading-data-with-python-and-pandas/lesson-9-parse-artists-json-file/tests/test_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/HEAD/unit-1-reading-data-with-python-and-pandas/lesson-9-parse-artists-json-file/tests/test_shape.py --------------------------------------------------------------------------------