Learn practical skills, build real-world projects, and advance your career

PyCon 2019: Data Science Best Practices with pandas (video)

GitHub repository: https://github.com/justmarkham/pycon-2019-tutorial

Instructor: Kevin Markham

1. Introduction to the TED Talks dataset

https://www.kaggle.com/rounakbanik/ted-talks

import pandas as pd
pd.__version__
'0.24.2'
import matplotlib.pyplot as plt
%matplotlib inline
ted = pd.read_csv('ted.csv')