博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python CheatSheet
阅读量:6358 次
发布时间:2019-06-23

本文共 806 字,大约阅读时间需要 2 分钟。

1.google map

import requests

response = requests.get('https://maps.googleapis.com/maps/api/geocode/json?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA')

resp_json_payload = response.json()

print(resp_json_payload['results'][0]['geometry']['location'])

 

2. pandas sql

http://www.cnblogs.com/fuxiaotong/p/7802575.html

3. output file

df_output.to_csv("my_predict.csv", index=False, encoding='utf-8')

 

4. dataframe types

df.dtypes

 

5. convert type

df[x].astype(str)

 

6. Plot

1.

radius = [1.0, 2.0, 3.0, 4.0, 5.0, 6.0]

area = [3.14159, 12.56636, 28.27431, 50.26544, 78.53975, 113.09724]

plt.plot(radius, area)

plt.show()

 

 2.

df.plot(x='date',y='unit_sales')

plt.show()

 

7.dataframe merge

http://blog.csdn.net/zutsoft/article/details/51498026

dfA.append(dfB)

 

转载于:https://www.cnblogs.com/fuxiaotong/p/6672916.html

你可能感兴趣的文章
GreenDao 数据库升级 连接多个DB文件 或者指定不同的model&dao目录
查看>>
M1卡破解(自从学校升级系统之后,还准备在研究下)【转】
查看>>
vue 访问子组件示例 或者子元素
查看>>
linux内核--自旋锁的理解
查看>>
银行卡的三个磁道
查看>>
OpenSSL 提取 pfx 数字证书公钥与私钥
查看>>
Keepalived详解(四):通过vrrp_script实现对集群资源的监控【转】
查看>>
CollapsingToolbarLayoutDemo【可折叠式标题栏,顺便带有CardView卡片式布局】
查看>>
CentOS7.4安装配置mysql5.7 TAR免安装版
查看>>
解决IE二级链接无法打开故障
查看>>
Windows phone应用开发[16]-数据加密
查看>>
SQL Server 迁移数据到MySQL
查看>>
通用数据压缩算法简介
查看>>
The next Industry Standard in IT Monitoring, a python implementation Nagios like tool --- Shinken
查看>>
(笔记)找工作,该怎么进补
查看>>
div的显示和隐藏以及点击图标的更改
查看>>
(轉貼) Ubuntu將在ARM平台netbook上現身 (SOC) (News) (Linux) (Ubuntu)
查看>>
SQL注入测试工具:Pangolin(穿山甲)
查看>>
在html 的img属性里只显示图片的部分区域(矩形,给出开始点和结束点),其他部份不显示,也不要拉伸...
查看>>
程序员第二定律:量化管理在程序员身上永无可能
查看>>