Untitled
unknown
plain_text
2 years ago
161 B
8
Indexable
columns_to_replace = df['track', 'artist', 'genre'] for col in columns_to_replace: columns_to_replace[col] = columns_to_replace[col].fillna('unknown')
Editor is loading...
columns_to_replace = df['track', 'artist', 'genre'] for col in columns_to_replace: columns_to_replace[col] = columns_to_replace[col].fillna('unknown')