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.20
TRX 0.13
JST 0.029
BTC 65791.75
ETH 3465.64
USDT 1.00
SBD 2.68