Skip to content

Instantly share code, notes, and snippets.

@rmorenobello
Last active October 20, 2022 17:38
Show Gist options
  • Save rmorenobello/2032822cd3ae73d1f0f8753368b1c15d to your computer and use it in GitHub Desktop.
Save rmorenobello/2032822cd3ae73d1f0f8753368b1c15d to your computer and use it in GitHub Desktop.
DS - input / output
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:]
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