第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

AttributeError: 'NoneType' 對(duì)象沒(méi)有屬性 'head'

AttributeError: 'NoneType' 對(duì)象沒(méi)有屬性 'head'

HUWWW 2023-04-11 15:24:30
import pandas as pd    from alpha_vantage.timeseries import TimeSeriesfrom alpha_vantage.techindicators import TechIndicators ts = TimeSeries(key=api_key, output_format = 'pandas')ti = TechIndicators(key=api_key, output_format='pandas')data1, meta_data1 = ts.get_intraday(symbol = 'GOOGL' ,interval = '5min', outputsize = 'full')data2, meta_data2 = ti.get_bbands(symbol = 'GOOGL' , interval='5min', time_period=60)data = pd.concat([data1, data2], axis=1, sort=False)data = data.rename(columns={'1. open': 'Open', '2. high': 'High', '3. low': 'Low', '4. close': 'Close'}, inplace = True)data.head()在上面的代碼中,我從 alpha vantage api 導(dǎo)入數(shù)據(jù)。但是出現(xiàn)了上面的錯(cuò)誤。請(qǐng)幫我!
查看完整描述

1 回答

?
神不在的星期二

TA貢獻(xiàn)1963條經(jīng)驗(yàn) 獲得超6個(gè)贊

當(dāng)您使用 時(shí)inplace=True,該rename函數(shù)會(huì)就地執(zhí)行操作,并且不會(huì)返回包含重命名列的數(shù)據(jù)框。相反,它返回None,然后將其分配給data- 使其成為 NoneType 對(duì)象。由于data不再是 df,因此調(diào)用head()它會(huì)導(dǎo)致您遇到錯(cuò)誤。



查看完整回答
反對(duì) 回復(fù) 2023-04-11
  • 1 回答
  • 0 關(guān)注
  • 120 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)