Pinned Loading
-
pandasgui_setup.txt
pandasgui_setup.txt 1# pandasgui
2# !pip install pandasgui
3# assume data is loaded in dataframe df
4from pandasgui import show
5gui = show(df)
-
Parsing an ISO 8601 string into date...
Parsing an ISO 8601 string into date and time elements 1from dateutil.parser import isoparse
2date_obj = isoparse('2018-05-26T15:00:00Z')
3date_obj_time = date_obj.time()
4date_obj_date = date_obj.date()
5date_obj_day = date_obj.day
-
Data Prep: Shipping prices in USD an...
Data Prep: Shipping prices in USD and CAD 1# import re
2# https://regex101.com/
3# Sample Data:
4# USD 6.60
5# CAD 3.23
-
saa_split_iso8601_str_python.txt
saa_split_iso8601_str_python.txt 1def process_date_seen(r):
2'''
3r will be a row in a Pandas Series containing a comma-separated list
4of strings representing datetime in ISO 8601 format.
5Here we are extracting a few features of interest such as
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.