Quantcast
Channel: Python
Viewing all articles
Browse latest Browse all 3

Getting 'ValueError'

$
0
0
The input contains NaN, infinity, or a value too large for dtype('float64')' when trying to perform a group by operation on my DataFrame. Here's my code snippet:

Python:
import pandas as pd

# Load data from CSV
data = pd.read_csv('data.csv')

# Perform groupby operation
grouped = data.groupby('category')['value'].sum()

I've checked for NaN or infinity values in 'value' column using data['value'].isnull().sum() and data['value'].isinf().sum() which both returned 0. What could be causing...

Read more

Viewing all articles
Browse latest Browse all 3

Trending Articles