gistlib
main.pyimport pandas as pd url = 'https://github.com/ten-clr/ds100/raw/main/salary.csv' df = pd.read_csv(url) # Now you can work with the dataframe 'df' 148 chars7 lines
import pandas as pd url = 'https://github.com/ten-clr/ds100/raw/main/salary.csv' df = pd.read_csv(url) # Now you can work with the dataframe 'df'
gistlibby LogSnag