基於python的大資料分析-pandas資料儲存(程式碼實戰)
上篇我們學習了pandas的資料讀取,這次我們來看看如何進行資料的存入,程式碼擼起來~
csv檔案
格式:to_csv(檔案路徑, sep='', index=TRUE, header=TRUE)
index預設是true,帶行序號
header預設是true,帶列名
from pandas import DataFrame
from pandas import Series
#造資料
df=DataFrame({'age':Series([26,85]),'name':Series(['xiaoqiang1','xiaoqiang2'])})
df
#存入
df.to_csv('d:\1.csv')
excel檔案
格式:to_excel(檔案路徑, index=TRUE, header=TRUE)
解釋同上,不在廢話
from pandas import DataFrame
from pandas import Series
#造資料
df=DataFrame({'age':Series([26,85]),'name':Series(['xiaoqiang1','xiaoqiang2'])})
df
#存入
df.to_excel('d:\1.xlsx')
mysql
格式:to_sql(name=表名, con=資料庫連結物件)
from pandas import DataFrame
from pandas import Series
from sqlalchemy import create_engine
engine=create_engine('mysql+pymysql://填寫使用者名稱:填寫密碼@填寫ip地址:3306/填寫資料庫名?charset=utf8')
#造資料
df=DataFrame({'age':Series([26,85]),'name':Series(['xiaoqiang1','xiaoqiang2'])})
df.to_sql(name=表名, con=engine, if_exists='append', index=False, index_label=False)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69942496/viewspace-2655300/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 基於python的大資料分析-pandas資料讀取(程式碼實戰)Python大資料
- 基於python的大資料分析-資料處理(程式碼實戰)Python大資料
- 基於python的大資料分析實戰學習筆記-pandas(資料分析包)Python大資料筆記
- 基於python的大資料分析實戰學習筆記-pandas之DataFramePython大資料筆記
- 基於python的大資料分析實戰學習筆記-AnacondaPython大資料筆記
- Python - pandas 資料分析Python
- python儲存超大資料excel表格——大於65532Python大資料Excel
- Python資料分析之pandasPython
- Druid:實時分析資料儲存UI
- Python | 資料分析實戰ⅠPython
- Python | 資料分析實戰 ⅡPython
- 大資料元件-Hive部署基於MySQL作為後設資料儲存大資料元件HiveMySql
- 爬蟲資料儲存--基於MonogoDB爬蟲MonoGo
- Python資料分析之Pandas篇Python
- Python大資料分析學習.Pandas 資料匯入問題 (1)Python大資料
- 小米大資料儲存服務的資料治理實踐大資料
- Python資料分析 Pandas模組 基礎資料結構與簡介Python資料結構
- python基礎語法 - 資料儲存模型Python模型
- 如何使用HBase?大資料儲存的兩個實戰場景大資料
- CSDN周賽第37期:贏《Pandas入門與實戰應用 :基於Python的資料分析與處理》Python
- 基於Pandas+ECharts的金融大資料視覺化實現方案Echarts大資料視覺化
- 七牛大資料平臺的實時資料分析實戰大資料
- 資料分析常用的 23 個 Pandas 程式碼,收好不謝
- python-資料分析-Pandas-3、DataFrame-資料重塑Python
- 基於雲原生的大資料實時分析方案實踐大資料
- 基於 Spark 的資料分析實踐Spark
- 【Python3網路爬蟲開發實戰】5-資料儲存-2-關係型資料庫儲存-1 MySQL儲存Python爬蟲資料庫MySql
- 關於InnoDB表資料和索引資料的儲存索引
- 基於Hive的大資料分析系統Hive大資料
- 分散式檔案系統HDFS,大資料儲存實戰(一)分散式大資料
- Python利用pandas處理資料與分析Python
- 用 Python 進行資料分析 pandas (一)Python
- Python入門教程—資料分析工具PandasPython
- 《Python資料分析與挖掘實戰》原始碼下載Python原始碼
- Spring Boot實戰系列(2)資料儲存之NoSQL資料庫MongoDBSpring BootSQL資料庫MongoDB
- 【Python3網路爬蟲開發實戰】5-資料儲存-3-非關係型資料庫儲存-1 MongoDB儲存Python爬蟲資料庫MongoDB
- 【Python3網路爬蟲開發實戰】5-資料儲存-3-非關係型資料庫儲存-2 Redis儲存Python爬蟲資料庫Redis
- DataLeap資料資產實戰:如何實現儲存最佳化?