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
- CBOW
- 시소러스
- 1x1 Convolution
- Gated Recurrent Unit
- f1-score
- 벡터 간 유사도
- nn.Module
- deep learning
- Linear algebra
- dl
- 차원 감소
- 상호 정보량
- excel
- Long Short Term Memory
- pytorch
- 분포 가설
- Charlse Severance
- convolution
- object detaction
- 선형대수
- pythonForEverybody
- Multi-Layer Perceptron
- Python
- 파이썬
- GoogLeNet
- mlops
- skip-gram
- py4e
- docker
- 동시발생 행렬
Archives
- Today
- Total
Tech & TIL
[파이썬] xlsb 파일 읽기 본문
xlsx 파일은 pd.read_excel('파일경로')로 읽으면 된다.
xlsb 파일은 pyxlsb를 사용하여 읽는다.
!pip install pyxlsb
import pandas as pd
df = pd.read_excel('파일경로', engine='pyxlsb')
Comments