import pandas
data = pandas.read_csv('Datasets/average-height-of-men.csv')
result = data['Mean male height (cm)'].mean()
print(result)
In the CSV Dataset, each country has an average age of more than 50 years. For example, what should I do to get only the values of Germany or France in particular? I mean all of information just about that country that i want.
data['GER'] -> Error
Columns:
['Entity', 'Code', 'Year', 'Mean male height (cm)']
Entity = Countries, Code = e.g. FIN for Finland
Example data: Example Data