Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
aakankshaa23 committed Jun 19, 2019
0 parents commit eae7ab2
Show file tree
Hide file tree
Showing 10,831 changed files with 2,311,517 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
7 changes: 7 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/other.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions .idea/untitled.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

313 changes: 313 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions data/data1.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Month,No. of Products (in millions),Defective (in millions),Quality test passed (in millions),Cost (in billions)
Jan,2,0.02, 1.8,5
Feb,5,0.03 ,4.77 ,20
Mar,7, 0.04 ,6.63 ,28
Apr,3, 0.1 ,2.82 ,18
May,9, 0.001, 8.92,27
June, 11, 0.007 ,10.66,33
Jul,8, 0.04, 7.75,32
Aug,4, 0.002, 3.87,20
Sep,3, 0.2 ,2.78,15
Oct,1, 0.09, 0.9,3.5
Nov, 7, 0.07, 6.92,21
Dec,9, 0.04, 8.95,36
Empty file added practice.py
Empty file.
27 changes: 27 additions & 0 deletions project.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import notebook as notebook
from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
import numpy as np
'exec(%matplotlib inline)'



fig = plt.figure()
ax1 = fig.add_subplot(111, projection='3d')

xpos = [1,2,3,4,5,6,7,8,9,10]
ypos = [2,3,4,5,1,6,2,1,7,2]
num_elements = len(xpos)
zpos = [0,0,0,0,0,0,0,0,0,0]
dx = np.ones(10)
dy = np.ones(10)
dz = [1,2,3,4,5,6,7,8,9,10]

ax1.bar3d(xpos, ypos, zpos, dx, dy, dz, color='#00ceaa')
#for angle in range(0, 360):
#ax1.view_init(45, angle)
# plt.draw()
# plt.pause(0.001)


plt.show()
Loading

0 comments on commit eae7ab2

Please sign in to comment.