从API创建pandas数据帧

2024-09-28 01:33:27 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在构建一个API来检索人口普查数据,但在格式化输出时遇到问题。我的问题实际上是两个问题中的一个:

1)如何改进API调用以使输出更漂亮(理想情况下是数据帧)

或者

2)如何操作当前获取的列表,使其位于pandas数据帧中?在

以下是我目前所掌握的情况:

import requests
import pandas as pd
import numpy as np

mytoken = "numbersandletters" 
# this is my API key, so unfortunately I can't provide it

def state_data(token, variables, year = 2010, state = "*", survey = "sf1"):
    state = [str(i) for i in state]
    # make sure the input for state (integers) are strings
  variables = ",".join(variables) # squish all the variables into one string
  year = str(year)
  combine = ["http://api.census.gov/data/", year, "/", survey, "?key=", mytoken, "&get=", variables, "&for=state:"] 
# make a list of all the components to construct a URL
  incomplete_url = "".join(combine) # the URL without the state tackd on to the end
  complete_url = map(lambda i: incomplete_url + i, state) # now the state is tacked on to the end; one URL per state or for "*"
  r = []
  r = map(lambda i: requests.get(i), complete_url) 
# make an API call to each complete_url
  data = map(lambda i: i.json(), r)
print r
print data 
print type(data)
df = pd.DataFrame(data)
print df

下面是调用函数的一个例子,输出如下。在

^{pr2}$

导致:

[<Response [200]>, <Response [200]>, <Response [200]>, <Response [200]>]


[[[u'P0010001', u'P0010001', u'state'], [u'6346105', u'6346105', u'47']], 
[[u'P0010001', u'P0010001', u'state'], [u'25145561', u'25145561', u'48']], 
[[u'P0010001', u'P0010001', u'state'], [u'2763885', u'2763885', u'49']], 
[[u'P0010001', u'P0010001', u'state'], [u'625741', u'625741', u'50']]]

<type 'list'>
                         0                         1
0  [P0010001, P0010001, state]    [6346105, 6346105, 47]
1  [P0010001, P0010001, state]  [25145561, 25145561, 48]
2  [P0010001, P0010001, state]    [2763885, 2763885, 49]
3  [P0010001, P0010001, state]      [625741, 625741, 50]

鉴于预期的结果是:

  P0010001  P0010001  state
0 6346105   6346105   47
1 25145561  25145561  48
2 2763885   2763885   49
3 625741    625741    50

Fwiw,R中的类似代码如下。我正在将我用R编写的库翻译成Python:

state.data = function(token, state = "*", variables, year = 2010, survey = "sf1"){
  state = as.character(state)
  variables = paste(variables, collapse = ",")
  year = as.character(year)
  my.url = matrix(paste("http://api.census.gov/data/", year, "/", survey, "?key=", token,
                    "&get=",variables, "&for=state:", state, sep = ""), ncol = 1)

  process.url = apply(my.url, 1, function(x)   process.api.data(fromJSON(file=url(x))))
  rbind.dat = data.frame(rbindlist(process.url))
  rbind.dat = rbind.dat[, c(tail(seq_len(ncol(rbind.dat)), 1), seq_len(ncol(rbind.dat) - 1))] 
  rbind.dat
}

Tags: thetoapiurlfordataasvariables
1条回答
网友
1楼 · 发布于 2024-09-28 01:33:27

所以你有重复的字段,这是没有意义的,你的结果将只显示一个重复的字段。在

但是,您只需将dict对象的list/iterable传递给pd.DataFrame构造函数,您将得到您的结果:

vals = [[[...]]]  # the data you provided in your example
df = pd.DataFrame(dict(zip(*v)) for v in vals)

假设这是您的数据:

^{pr2}$

这样就可以了:

df = pd.DataFrame(data[1:], columns=data[0])

所以你需要弄清楚如何将数据放入表单中。我所做的就是传递一个列表列表(data[1:])和一个列表(data[0]

相关问题 更多 >

    热门问题