File:USA Historical Marginal Tax Rate for Highest and Lowest Income Earners.svg

Summary

Description
English: Historical graph of the marginal tax rates for the highest and lowest income earners in the USA, 1913-2015.
Italiano: Storico dell'aliquota massima e minima sul reddito negli USA nel periodo 1913-2015.
Date
Source Own work based on: Historical Marginal Tax Rate for Highest and Lowest Income Earners.jpg
Author Toobaz
SVG development
InfoField
 
The source code of this SVG is invalid due to an error.
 
This W3C-invalid plot was created with Matplotlib.
Category:Invalid SVG created with Matplotlib code#1000USA%20Historical%20Marginal%20Tax%20Rate%20for%20Highest%20and%20Lowest%20Income%20Earners.svg
 
The file size of this SVG plot may be irrationally large because its text has been converted to paths inhibiting translations.
Category:Path text SVG
Source code
InfoField

Python code

import pandas as pd
 import matplotlib.pyplot as plt
 
 df = pd.read_csv('USA_top_bottom.csv', sep='\t').set_index('Year')
 
 plt.grid()
 plt.plot(df.index, df['Highest income rate'], label='Highest', color='red', linewidth=2)
 plt.plot(df.index, df['Lowest income rate'], label='Lowest', color='blue', linewidth=2)
 plt.xlabel("Year", fontsize=20)
 plt.ylabel("Marginal tax rate", fontsize=20)
 plt.title("Historical Marginal Tax Rate for\nHighest and Lowest Wage Earners", fontsize=20)
 plt.legend()
 plt.tight_layout()
 plt.savefig('USA_tax.pdf')

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
Category:CC-BY-SA-4.0#USA%20Historical%20Marginal%20Tax%20Rate%20for%20Highest%20and%20Lowest%20Income%20Earners.svg
Category:Self-published work Category:Economic inequality Category:Marginal tax rates Category:Personal income taxes in the United States Category:Tax charts
Category:CC-BY-SA-4.0 Category:Economic inequality Category:Invalid SVG created with Matplotlib code Category:Marginal tax rates Category:Path text SVG Category:Personal income taxes in the United States Category:Self-published work Category:Tax charts