مهندسی و علم داده
4K subscribers
381 photos
174 videos
169 files
114 links
در مورد ادمین کانال :
- محمد عالیشاهی
- دکترای هوش مصنوعی دانشگاه تهران
-نائب رئیس هیات مدیره شرکت فناوران هوش مصنوعی
- مدیر ارشد پروژه های هوش مصنوعی و علم داده
Download Telegram
Forwarded from My first Channel
Raeesi-SNA_in_R.pdf
2.5 MB
آموزش گام به گام تحلیل شبکه اجتماعی در زبان R (فارسی)
#آموزش #تحقیق #شبکه_اجتماعی
#Social_Network #R
@Computer_IT_Engeenering
Forwarded from My first Channel
pourzaferani.rar
10.3 MB
اسلاید های آموزشی داده کاوری دانشگاه اصفهان (فارسی)
#اسلاید #ارائه #آموزش #داده_کاوی
#Data_mining
@Computer_IT_Engeenering
Forwarded from Deleted Account
#آموزش
Code for Tensorflow Machine Learning Cookbook

https://github.com/nfmcclure/tensorflow_cookbook
#آموزش نمودار میله ای در پایتون
import matplotlib.pyplot as plt

x= [1,2,3]
y= [20,40,60]

x2=[4,5,6]

plt.bar(x,y, label="Morning Group")

plt.bar(x2,y, label="Evening Group")

plt.title('Bar Graph 1 of Customer Data')

plt.xlabel('Amount of People')

plt.ylabel('Money Spent')

plt.legend()

plt.show()
@BIMining
#آموزش Create a Stack Plot در پایتون!

import matplotlib.pyplot as plt

months= [x for x in range(1,13)]

mortgage= [700, 700, 700,
800, 800, 800,
850, 850, 850,
850, 850, 850]

utilities= [500, 300, 380,
200, 600, 550,
310, 620, 290,
320, 440, 400]

repairs= [100, 120, 100,
150, 850, 80,
120, 220, 240,
50, 60, 150]

plt.plot([],[], color='blue', label='mortgage')
plt.plot([],[], color='orange', label='utilities')
plt.plot([],[], color='brown', label='repairs')


plt.stackplot(months, mortgage, utilities, repairs, colors=['blue', 'orange', 'brown'])

plt.legend()

plt.title('Household Expenses')
plt.xlabel('Months of the year')
plt.ylabel('Cost')

plt.show()

@BIMining