Nuclear bombs per country
You've been given a version of the Nuclear Explosion DataBase (NEDB) where country names are specified in the column headers (nuke_df). You want to visualize how many nukes were detonated per year per country. You'll need to pivot the data and replace NA values first.
The ggplot2 package has been pre-loaded for you.

"A-Day" First atomic bomb explosion at Bikini in the Marshall Islands 1 July 1946.
यह अभ्यास पाठ्यक्रम का हिस्सा है
Reshaping Data with tidyr
इंटरैक्टिव व्यावहारिक अभ्यास
इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।
nuke_df %>%
# Pivot the data to a longer format
___