Answers for "python how to geather and spread using pandas"

0

python how to geather and spread using pandas

#Import pandas module
import pandas as pd

# Define the dataframe
DF = pd.DataFrame({'y': [1,4], 'female': [2,5], 'male': [3,6]})

# Gather/melt the data frame
pd.melt(DF, id_vars='y', value_vars=['female', 'male'],var_name='gender',
value_name='value')
Posted by: Guest on May-04-2021

Code answers related to "python how to geather and spread using pandas"

Python Answers by Framework

Browse Popular Code Answers by Language