Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Вивчайте Extra Statistics | Conducting Exploratory Data Analysis of Nobel Prizes
Conducting Exploratory Data Analysis of Nobel Prizes

book
Extra Statistics

Lastly, let's derive some key statistics pertaining to Nobel laureates.

Завдання

Swipe to start coding

  1. Identify the earliest female Nobel Prize recipient based on the "awardYear".

  2. Identify the earliest male Nobel Prize laureate based on the "awardYear".

  3. Determine the laureate awarded the largest Nobel Prize amount.

Рішення

print('The earliest female Nobel Prize recipient:')
display(nobel[nobel["gender"] == "female"].nsmallest(1, columns="awardYear"))

print('The earliest male Nobel Prize recipient:')
display(nobel[nobel["gender"] == "male"].nsmallest(1, columns="awardYear"))

print('Laureate awarded the largest Nobel Prize amount:')
display(nobel.iloc[nobel[["prizeAmount"]].idxmax()])

Mark tasks as Completed
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 1. Розділ 6
AVAILABLE TO ULTIMATE ONLY
some-alt