日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

Python實現(xiàn)Mysql數(shù)據(jù)統(tǒng)計及numpy統(tǒng)計函數(shù)

系統(tǒng) 1693 0

Python實現(xiàn)Mysql數(shù)據(jù)統(tǒng)計的實例代碼如下所示:

            
import pymysql
import xlwt
excel=xlwt.Workbook(encoding='utf-8')
sheet=excel.add_sheet('Mysql數(shù)據(jù)庫')
sheet.write(0,0,'庫名')
sheet.write(0,1,'表名')
sheet.write(0,2,'數(shù)據(jù)條數(shù)')
db=pymysql.connect('192.168.1.74','root','123456','xx1')
cursor=db.cursor()
sql="select TABLE_SCHEMA as 'database',TABLE_NAME as table_name from information_schema.TABLES where TABLE_SCHEMA in ('my1','my2','t1','xx1');"
i=0
try:
 cursor.execute(sql)
 res1=cursor.fetchall()
 for row in res1:
 database=row[0]
 table=row[1]
 c1=row[0]+'.'+row[1]
 c2='select count(*) from %s'%c1
 try:
  cursor.execute(c2)
  res2=cursor.fetchall()
  for num in res2:
  count=num[0]
  i=i+1
  sheet.write(i,0,database)
  sheet.write(i,1,table)
  sheet.write(i,2,count)
 except:
  print('Error,Please check your code')
except:
 print('Error,Please check your code')
excel.save('C:\\Users\\user\\DeskTop\\mysql.xls')
db.close()
          

PS:下面看下Python數(shù)據(jù)分析numpy統(tǒng)計函數(shù)

np.mean(x [, axis]):
所有元素的平均值,參數(shù)是 number 或 ndarray
np.sum(x [, axis]):
所有元素的和,參數(shù)是 number 或 ndarray
np.max(x [, axis]):
所有元素的最大值,參數(shù)是 number 或 ndarray
np.min(x [, axis]):
所有元素的最小值,參數(shù)是 number 或 ndarray
np.std(x [, axis]):
所有元素的標準差,參數(shù)是 number 或 ndarray
np.var(x [, axis]):
所有元素的方差,參數(shù)是 number 或 ndarray
np.argmax(x [, axis]):
最大值的下標索引值,參數(shù)是 number 或 ndarray
np.argmin(x [, axis]):
最小值的下標索引值,參數(shù)是 number 或 ndarray
np.cumsum(x [, axis]):
返回一個同緯度數(shù)組,每個元素都是之前所有元素的 累加和,參數(shù)是 number 或 ndarray
np.cumprod(x [, axis]):
返回一個同緯度數(shù)組,每個元素都是之前所有元素的 累乘積,參數(shù)是 number 或 ndarray

總結

以上所述是小編給大家介紹的Python實現(xiàn)Mysql數(shù)據(jù)統(tǒng)計及numpy統(tǒng)計函數(shù),希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!
如果你覺得本文對你有幫助,歡迎轉載,煩請注明出處,謝謝!


更多文章、技術交流、商務合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯(lián)系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發(fā)表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 盱眙县| 荣成市| 平利县| 沙坪坝区| 通化县| 安龙县| 威远县| 保德县| 稷山县| 武功县| 萨嘎县| 灵宝市| 拜泉县| 申扎县| 安远县| 南宁市| 沁阳市| 明水县| 长垣县| 怀柔区| 内江市| 平乡县| 遂宁市| 蓬莱市| 黔西县| 伊金霍洛旗| 陇西县| 尼木县| 山东| 鸡西市| 东辽县| 鄂尔多斯市| 弥渡县| 定西市| 墨竹工卡县| 房产| 理塘县| 武山县| 营山县| 宁国市| 房产|