Question: Python Practical 2 : Plotting a trend graph in Python A trend Graph is a graph that is used to show the trends data over
Python Practical : Plotting a trend graph in Python
A trend Graph is a graph that is used to show the trends data over a period of time.
It describes a functional representation of two variables x y
In which the x is the timedependent variable whereas y is the collected data.
The graph can be in shown any form that can be via line chart, Histograms, scatter plot, bar chart, and piechart.
In python, we can plot these trend graphs by using matplotlib.pyplot library.
It is used for plotting a figure for the given data.
Using the below Examples, generate the appropriate Output & Graph:
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
#create a dataframe
Sports
"medals":
"TimePeriod":
df pdDataFrameSports
printdf
#to plot the graph
dfplotx"TimePeriod", y"medals", kind"line"
Practice : Using the above data plot the scatter and bar graph.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
