1,939 views
0 0 votes

I'm creating a new data frame with the most used items grouped together. But I got the following error when grouping through ID and items. ValueError: Length mismatch: Expected axis has 60 elements, new values have 2935849 elements.

df = sales_df[sales_df['shop_id'].duplicated(keep=False)]
df['Grouped'] = sales_df.groupby('shop_id')['item_name'].transform(lambda x: ','.join(x))
df2 = df[['shop_id', 'Grouped']].drop_duplicates()

In the aforementioned code, I'm making a data frame with respect to shop id and then grouping through shop items. My objective here is to group items with similar ID.

Please log in or register to answer this question.

Related questions

0 0 votes
1 1 answer
735
735 views
1 1 vote
1 1 answer
920
920 views
0 0 votes
0 0 answers
462
462 views
aaditi asked Nov 23, 2020
462 views
0 0 votes
0 0 answers
637
637 views
Anas asked Nov 28, 2021
637 views
So say I have a column with categorical data like different styles of temperature: 'Lukewarm', 'Hot', 'Scalding', 'Cold', 'Frostbite',... etc.I know that we can use pd.ge...
1 1 vote
0 0 answers
587
587 views
sujitha asked Feb 10, 2019
587 views
I have a tensorflow LSTM model for predicting the sentiment. I build the model with the maximum sequence length 150. (Maximum number of words) While making predictions, i...