我让它可以工作一次,但是没有保存文件并丢失了代码。 请帮忙。
import pandas as pd
import nltk
df0.head(4)
# X Y month day FFMC DMC DC
# 0 7 5 mar fri 86.2 26.2 94.3
# 1 7 4 oct tue 90.6 35.4 669.1
monthdict={'jan':1,'feb':2'mar':3,'oct':10,'nov':11,'dec':12}
def month2num(month):
return monthdict[month]
df0['month'] = df0['month'].apply(month2num)
df0.head()
“评论” 我不是很聪明,只是开始,所以请有人用英语解释解决方案。
下面的错误打印输出:
# KeyError
# Traceback
# (most recent call last)
# <ipython-input-48-566f3675aaed> in <module>()
# def month2num(month):
# return monthdict[month]
# ----> df0['month'] = df['month'].apply(month2num)
# df0.head()
# 1 frames
# pandas/_libs/lib.pyx in pandas._libs.lib.map_infer()
# <ipython-input-48-566f3675aaed> in month2num(month)
#
# def month2num(month):
# ----> return monthdict[month]
# df0['month'] = df['month'].apply(month2num)
# df0.head()
# KeyError: 'apr'
答案 0 :(得分:1)
您可以使用以下给定代码将月份转换为整数
import pandas as pd
def GetMonthInInt(month):
MonthInInts = pd.Series([1,2,3,4,5,6,7,8,9,10,11,12],index=['jan','feb','mar','apr','may','jun','jul','aug','sep','oct','nov','dec'])
return MonthInInts[month.lower()]
data = pd.DataFrame(['Oct','Nov','Mar','Feb','Jan','Dec','Aug','Sep'],columns=['Month'])
data['MonthInInt']= data['Month'].apply(GetMonthInInt)
print(data)
您将获得带有上述示例代码的输出
Month MonthInInt
0 Oct 10
1 Nov 11
2 Mar 3
3 Feb 2
4 Jan 1
5 Dec 12
6 Aug 8
7 Sep 9
希望,这可以解决将月份转换为整数的问题。
答案 1 :(得分:0)
字典的另一种选择是在元组中使用索引(尽管使用字典进行散列可能会更快):
months = (None, 'jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug', 'sep', 'oct', 'nov', 'dec')
integervalue = months.index(monthstring)
答案 2 :(得分:0)
使用datetime
:
df['month'] = pd.to_datetime(df['month'],format='%b').dt.month
或者:
import calendar
df['month'] = df['month'].str.title().apply(list(calendar.month_abbr).index)