0% found this document useful (0 votes)
5 views3 pages

Data Visualization with NumPy and Matplotlib

The document contains a Jupyter notebook that demonstrates basic data manipulation and visualization using NumPy and Matplotlib. It includes generating a random array, creating a line plot, and displaying a histogram of a dataset. The notebook is hosted on Google Colaboratory.

Uploaded by

PAWAN TIWARI
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views3 pages

Data Visualization with NumPy and Matplotlib

The document contains a Jupyter notebook that demonstrates basic data manipulation and visualization using NumPy and Matplotlib. It includes generating a random array, creating a line plot, and displaying a histogram of a dataset. The notebook is hosted on Google Colaboratory.

Uploaded by

PAWAN TIWARI
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

7/21/2020 Untitled1.

ipynb - Colaboratory

import numpy as np
a1 = [Link](3,4)

a1

array([[0.30217636, 0.81674362, 0.02884305, 0.02416511],


[0.12276458, 0.25272802, 0.55811503, 0.39734191],
[0.38982362, 0.98588722, 0.01701724, 0.69055472]])

import [Link] as plt

[Link]([1,2,3,4,5,6,7])

[<[Link].Line2D at 0x7ff45177c0b8>]

[Link]('My Values')

Text(0, 0.5, 'My Values')

[Link]([1,2,3,4,5,6,7])
[Link]("My numbers")
[Link]()

[Link] 1/3
7/21/2020 [Link] - Colaboratory

x = [21,22,23,4,5,6,7,11,36,37,100,50,49,1,0,31,32]
num_bins = 10
[Link](x,num_bins,facecolor='blue')
[Link]()

[Link] 2/3
7/21/2020 [Link] - Colaboratory

[Link] 3/3

You might also like