मुझे पंडों का डेटाफ़्रेम मिला है और मैं एक टपल बनाने के लिए 'लेट' और 'लॉन्ग' कॉलम को जोड़ना चाहता हूँ।
<class 'pandas.core.frame.DataFrame'>
Int64Index: 205482 entries, 0 to 209018
Data columns:
Month 205482 non-null values
Reported by 205482 non-null values
Falls within 205482 non-null values
Easting 205482 non-null values
Northing 205482 non-null values
Location 205482 non-null values
Crime type 205482 non-null values
long 205482 non-null values
lat 205482 non-null values
dtypes: float64(4), object(5)
मैंने जिस कोड का उपयोग करने की कोशिश की वह था:
def merge_two_cols(series):
return (series['lat'], series['long'])
sample['lat_long'] = sample.apply(merge_two_cols, axis=1)
हालाँकि, इसने निम्न त्रुटि लौटा दी:
---------------------------------------------------------------------------
AssertionError Traceback (most recent call last)
<ipython-input-261-e752e52a96e6> in <module>()
2 return (series['lat'], series['long'])
3
----> 4 sample['lat_long'] = sample.apply(merge_two_cols, axis=1)
5
...
AssertionError: Block shape incompatible with manager
इस समस्या का समाधान किस प्रकार से किया जा सकता है?
list
। यह काम करना चाहिए:df['new_col'] = list(zip(df.lat, df.long))