Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Oppiskele 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.

Tehtävä

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.

Ratkaisu

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
Oliko kaikki selvää?

Miten voimme parantaa sitä?

Kiitos palautteestasi!

Osio 1. Luku 6
AVAILABLE TO ULTIMATE ONLY
some-alt