U.S. Budget: Where the Money Went
U.S. Budget: Where the Money Went Data Science Project
Visualizations with Matplotlib

U.S. Budget: Where the Money Went

This project uses Matplotlib to reveal how U.S. federal spending changed from 1962 to 2018. You'll see how priorities shifted over time and what the numbers mean today—all through clear, engaging visuals. Let's dive into the story behind the budget!
Start this project
U.S. Budget: Where the Money WentU.S. Budget: Where the Money Went
Project Created by

Adeyinka Odiaka

Project Activities

All our Data Science projects include bite-sized activities to test your knowledge and practice in an environment with constant feedback.

All our activities include solutions with explanations on how they work and why we chose them.

codevalidated

Plot a bar chart showing the budget allocation for the top 5 departments in 1962.

Create a bar chart with the created DataFrame top_5_departments to display the budget allocation for these top 5 departments using the following parameters :

Figuresize : 10 by 6

Colors : Defined in notebook

Title : Top 5 U.S. Departments by Budget Allocation in 1962

xlabel : Department

ylabel : Budget (in Millions)

Rotate the x-label by 45 degrees to ensure better readability, then use fig.tight_layout() to ensure everything fits perfectly.

codevalidated

Plot the Proportion of the Department of Defense's Budget Relative to the Total Federal Budget for Each Fiscal Year from 1962 to 2018

Use the created DataFrmae combined_budget (which combines the inflation adjusted budget for the defense department and other departments) to plot a stacked bar chart using the following parameters:

Figure size : 10 by 6

Colors : blue and lightgray

Title : Proportion of Department of Defense vs. Other Departments (1962-2018), fontsize=16

xlabel : Fiscal Year, fontsize=12

ylabel : Budget Dollars (Inflation Adjusted), fontsize=12

Legend Title : Department, loc=upper left

Finish by displaying your plot to see the budget proportions over time.

codevalidated

Compare the original budget values with the inflation-adjusted values to discuss the impact of inflation over time.

In this exercise, you'll create a clear visualization that compares the original and inflation-adjusted budget values by fiscal year. You will be using Matplotlib's object-oriented interface to create two vertically aligned subplots sharing a common x-axis figure size of 12 by 10.

Subplot 1 will display the original budget values with a bar chart in skyblue.

  • Add a title: Original Budget Dollars by Fiscal Year

  • Label the y-axis as: Budget Dollars

Subplot 2 will showcase the inflation-adjusted budget values with a bar chart in salmon.

  • Add a title: Inflation Adjusted Budget Dollars by Fiscal Year

  • Label the y-axis as: Inflation Adjusted Budget Dollars

  • Rotate the x-axis labels by 45 degrees, and label the x-axis as: Fiscal Year

Finally, apply tight_layout() to ensure the layout is well-adjusted and clear.

multiplechoice

When is it appropriate to use a pie chart over a bar plot?

codevalidated

Visualize the Proportion of Each Department's Budget Relative to the Total Budget using Stacked Bar Charts

Create a stacked bar chart with the created DataFrame pivot_data by iterating over the departments and stacking the bars and adjusting the bottom parameter to accumulate the heights. Use the following parameters for the plot :

Figure size : 12 by 8

Title : Proportion of Each Department's Budget Relative to Total Budget

xlabel : Fiscal Year

ylabel : Proportion of Total Budget

Legend Title : Department or Unit

Ensure that your x-axis labels are rotated at 45 degrees for readability. Lastly, apply the tight_layout() function to fine-tune the layout before displaying the plot.

codevalidated

Plot a donut chart that shows the proportions of the total federal budget allocated to the Executive, Legislative, and Judicial branches.

Plot the predefined proportions in your notebook to plot a donut chart using the following parameters:

Figure size : 8 by 8

Colors : Defined in Notebook

Title: Proportion of Total Federal Budget Allocated to Branches

Use autopct to display the percentage values inside the chart with the format %1.1f%%

Set the start angle to 140 degrees for proper orientation.

Insert a white circle at the center with coordinates (0, 0) and a radius of 0.5 to create the donut effect. Adjust the appearance of the text labels (percentages) using the autotexts parameter, with font size = 10 and font weight = bold. Finally, use tight_layout() to ensure proper layout.

codevalidated

Create a Horizontal bar chart comparing the budget amounts (inflation-adjusted) for the most-funded departments.

Create a horizontal bar chart with the DataFrame top_departments, setting the bars' color to green and a figure size of 10 by 6. Label the x-axis as Budget Dollars (Inflation Adjusted), the y-axis as Department or Unit, and give the chart the title Most-Funded Departments (Inflation Adjusted). Finally, apply tight_layout() to ensure the chart is neatly formatted.

codevalidated

Create a bar chart comparing the budgets. Evaluate the changes in the country's shifting priorities.

In this exercise, you will analyze and visualize the top five funded departments based on their inflation-adjusted budgets for the years 1962 and 2018. You will use a bar chart to facilitate a direct comparison between the two years, highlighting how funding has changed over time. Using the calculated DataFrames top_2018 and top_1962, create a bar chart to compare the top five departments from both years.

Figure size : 10 by 6

Title : Top 5 Funded Departments (Inflation Adjusted) in 1962 vs 2018

xlabel : Departments

ylabel : Budget Dollars (Inflation Adjusted)

bar_width : 0.35

Adjust the x-ticks to display department names, rotating them by 45 degrees for better readability. Also, include a legend to distinguish between the years. Finally, Use .tight_layout() to ensure the layout is clean and free of overlaps.

codevalidated

Who Was the 'Big Spender' President?

Using the created DataFrame sorted_presidents, create a 12 by 8 figure and axis for plotting, then generate a dark blue bar chart, setting the x-axis to the sorted president names and the y-axis to their total budgets. Label the x-axis as President, the y-axis as Total Budget Dollars (Inflation Adjusted), and give the plot a title: Which President Had the Largest Inflation-Adjusted Budget?. Adjust x-tick labels to be readable by rotating them(rotation=45, ha=right), and use .tight_layout to ensure the plot is propoerly laid out. Finally, use idxmax() and max() to find and print the name and amount of the president with the highest budget.

codevalidated

Plot the percentage change in inflation-adjusted budget dollars between presidential administrations for Agriculture and determine the president with the largest budget increase

Using the DataFrame df_agriculture created in your notebook, plot the percentage changes over fiscal years for each president.

Figure size : 12 by 6

Marker : o

Title : Percentage Change in Inflation-Adjusted Budget for the Department of Agriculture by President

xlabel : Fiscal Year

ylabel : Percentage Change in Budget Dollars (Inflation Adjusted)

Legend Title : President

Finally, add grid lines and display the plot using .tight_layout().

U.S. Budget: Where the Money WentU.S. Budget: Where the Money Went
Project Created by

Adeyinka Odiaka

Hey there, I'm Ade. Think of me as a data detective on a mission to uncover the secrets hidden in numbers. I love the feeling of uncovering hidden stories within data. It's like being a detective, but with spreadsheets and algorithms.I'm on a mission

Hey there, I'm Ade. Think of me as a data detective on a mission to uncover the secrets hidden in numbers. I love the feeling of uncovering hidden stories within data. It's like being a detective, but with spreadsheets and algorithms.I'm on a mission

This project is part of

Visualizations with Matplotlib

Explore other projects