Last active
October 20, 2022 17:38
-
-
Save rmorenobello/2032822cd3ae73d1f0f8753368b1c15d to your computer and use it in GitHub Desktop.
DS - input / output
This file contains hidden or 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
import csv | |
file = open('dq_unisex_names.csv') | |
file_reader = csv.reader(file) | |
rows_list = list(file_reader) | |
file.close() | |
header = rows_list[0] | |
data = rows_list[1:] |
This file contains hidden or 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
import pandas as pd | |
who_time_series = pd.read_csv('WHO_time_series.csv') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment