Question: Could you plug this into MatLab and send me a picture? I currently don't own the software. Or could you make something very similar if

Could you plug this into MatLab and send me a picture? I currently don't own the software.

Or could you make something very similar if plugging it in doesnt work?

import matplotlib.pyplot as plt # Trade data trade_data = { '2010': 84.3, '2011': 93.2, '2012': 103.9, '2013': 113.6, '2014': 115.2, '2015': 114.0, '2016': 118.4, '2017': 124.8, '2018': 142.4, '2019': 150.4, '2020': 137.5, '2021': 160.1, '2022': 170.0 } # Pie chart labels years = list(trade_data.keys()) # Pie chart values values = list(trade_data.values()) # Create the pie chart plt.pie(values, labels=years, autopct="%1.1f%%") plt.title("Trade between the United States and India (2010-2022)") plt.show()

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Economics Questions!