For the string item train['name'] in Python, I would like to create a separate item with "1" if it contains a specific string (e.g., "aaaa"), or "0" if it does not contain it (train['test']).At that time, I tried to create the following functions (kansu1 and kansu2) and set them with the apply function, but could you tell me where the problem is because it didn't work?
def test_kansu1(s):
ifs.contains('aaa'):
return1
else:
return 0
train['test'] = train['name'].apply(lambdax:test_kansu1(x))
-->AttributeError: 'str' object has no attribute'str'
def test_kansu2(s):
ifs.str.contains('aaa'):
return1
else:
return 0
train['test'] = train['name'].apply(lambdax:test_kansu2(x))
-->AttributeError: 'str' object has no attribute' contains'
python3
def test_kansu1(s):
# ifs.contains('aaa'): #< -- Error because str instance does not have content method
if 'aaa'ins:
return1
else:
return 0
def test_kansu2(s):
# ifs.str.contains('aaa'):#<--Error because str type instance does not have attribute (attribute)
if 'aaa'ins:
return1
else:
return 0
pandas.Series.str.contains()
import pandas as pd
train=pd.DataFrame({
'name': ['01_aaa', '02_bbb', '03_ccc', '04_ddd', '05_eee']
})
train['test'] = train['name'].str.contains('aaa')*1
print(train)
# name test
# 001_aaa1
# 102_bbb0
# 203_cc0
# 304_ddd0
# 405_eee0
579 Understanding How to Configure Google API Key
575 rails db:create error: Could not find mysql2-0.5.4 in any of the sources
585 PHP ssh2_scp_send fails to send files as intended
620 GDB gets version error when attempting to debug with the Presense SDK (IDE)
577 Who developed the "avformat-59.dll" that comes with FFmpeg?
© 2024 OneMinuteCode. All rights reserved.