Facebook
From Kadir Çallıoğlu, 1 Month ago, written in Python.
This paste is a reply to 6 from Kadir Çallıoğlu - go back
Embed
Viewing differences between 6 and Re: 6
import pandas as pd

# Specify the columns to optimze
columns_to_load = ['country', 'daily_vaccinations']

pd
import numpy as np

# Read the CSV file
df = pd.read_csv('/Users/ComputerX/Downloads/country_vaccination_stats.csv', usecols=columns_to_load)

print(df.
read_csv('/Users/namnam/Downloads/country_vaccination_stats.csv')

# Calculate the median daily vaccination number per country
median_vaccinations = df.
groupby('country')['daily_vaccinations'].median().median()

top_3_countries = median_vaccinations.
sort_values(ascending=False).head(3))head(3)
print(top_3_countries)