curriculum/challenges/english/blocks/data-analysis-with-python-course/5e9a093a74c4063ca6f7c15c.md
Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.
More resources:
What code would add a "Certificates per month" column to the certificates_earned DataFrame like the one below?
certificates_earned['Certificates'] /
certificates_earned['Time (in months)']
certificates_earned['Certificates per month'] = round(
certificates_earned['Certificates'] /
certificates_earned['Time (in months)']
)
certificates_earned['Certificates per month'] = round(
certificates_earned['Certificates'] /
certificates_earned['Time (in months)'], 2
)
3