Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 이것이자바다
- Python
- 시큐어코딩
- 제네릭
- 김영한
- docker
- inflearn
- 불친절한 SQL 프로그래밍
- JPA
- 서블릿
- 불친절한SQL프로그래밍
- 자바공부
- 스프링 부트와 JPA
- 자바의정석 연습문제
- Java의정석
- 스프링입문
- 분석함수
- 스프링MVC
- Numpy
- Secure Coding
- REGEXP_SUBSTR
- java
- 항해플러스 백엔드
- 스프링
- 자바연습문제
- 자바의정석
- 인프런
- 항해플러스
- 스프링 핵심원리
- Spring
Archives
- Today
- Total
목록Programming/[2019] Python Data Analysis (1)
Continuous Challenge
Python Data Analysis (1) - read_excel(), read_html() error
xlsx_df = pd.read_excel( 'D:\Python\pandas_exercise\Excel_Sample.xlsx', sheet_name = 'Sheet1' ) -> error 발생. => cmd 창에서 xlrd 를 설치해주었더니 해결되었다. pip install xlrd html_df = pd.read_html('http://www.fdic.gov/bank/individual/failed/banklist.html') -> error 발생. lxml not found, please install it=> cmd 창에서 python실행 후 lxml을 설치해주었더니 해결되었다. pip install lxml
Programming/[2019] Python Data Analysis
2019. 1. 16. 12:33