본문 바로가기

개발일지/Pandas50

Pandas importerror: lxml not found, please install it 이 에러는 간만에 굉장히 당황스러운 에러였다. 여러가지 방법을 써도 해결이 안되었기 떄문이다. 먼저 나의 컴퓨터 환경은 m1 pro mac 이다. 즉, m1 mac 에서 importerror: lxml not found, please install it 에러가 난 것이다. 그리고 내가 실행하고자 했던 명령은 이것이였다. ''' import pandas as pd url = 'https://en.wikipedia.org/wiki/1976_Summer_Olympics_medal_table' pd.read_html(url) ''' #1 첫번째 시도는 너무 당연하게도 lxml을 install 해주는 것이였다. 하지만 여전히 importerror: lxml not found, please install it 에러.. 2022. 7. 28.
pandas 판다스 기초 14 import excel # Importing From Excel Files with pd.read_excel() ## First Steps - NEW (from Pandas Version 0.24x) import pandas as pd sales = pd.read_excel('sales.xls') sales ''' Unnamed: 0CityCountrySalesBonus 0MikeNew YorkUSA252.50 1JimBostonUSA434.30 2StevenLondonUK767.60 3JoeMadridSpain121.80 4TomParisFrance8913.35 ''' # index_col을 통해서 엑셀을 열어봤을때 첫번째 컬럼을 열게된다. - index_col = 0 sales = pd.read_excel('sales.xl.. 2022. 7. 27.
pandas 판다스 기초 13 import CSV file # Importing CSV Files ## First Steps with open('titanic.csv') as f: text = f.readlines() text ''' ['survived,pclass,sex,age,sibsp,parch,fare,embarked,deck\n', '0,3,male,22.0,1,0,7.25,S,\n', '1,1,female,38.0,1,0,71.2833,C,C\n', '1,3,female,26.0,0,0,7.925,S,\n', '1,1,female,35.0,1,0,53.1,S,C\n', '0,3,male,35.0,0,0,8.05,S,\n', '0,3,male,,0,0,8.4583,Q,\n', ''' # 같은게 배열된다. len(text) # 892 # pandas의 r.. 2022. 7. 26.
pandas 틀린부분 복기 6 matplotlib # 문제1 # Create the graph below (lineplot for all numerical columns)! # subplots, sharex에 대한 기능이 생각이 안났었다. cars.plot(figsize = (14,10), subplots = True, sharex = False) plt.show() # 문제2 # Create the graph below (Scatterplot with horsepower and mpg)! Fill in the gaps! # 내 코드 cars.plot(kind = 'scatter', x = 'horsepower', y = 'mpg', figsize = (12,10), c = 'cylinders', marker = 'x', colormap = "virid.. 2022. 7. 26.