You are viewing a single comment's thread from:

RE: Payment for Coding done

in #codingfund10 months ago

Convert the flight data to a pandas DataFrame

df = pd.DataFrame(flight_data)

Feature engineering: Extract day and month from the date

df['day'] = pd.to_datetime(df['date']).dt.day
df['month'] = pd.to_datetime(df['date']).dt.month

Coin Marketplace

STEEM 0.18
TRX 0.13
JST 0.029
BTC 57946.22
ETH 3059.94
USDT 1.00
SBD 2.34