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
- git
- deeplearning
- cs224n
- Standford
- install
- seq2seq
- language_model
- gensim
- review
- tab
- paper_review
- machinelearning
- code
- text
- computer_setting
- Statistics
- cs231n
- Vim
- linux
- Stanford
- github
- terminal
- error
- computer
- Ai
- pip
- json
- nlp
- slideshare
- natural_language_processing
Archives
- Today
- Total
NLP/AI/Statistics
python 지수 표현 변경 본문
python에서 float 값이 지수 값으로 표현되어 불편한 경우가 있다.
이를 없애기 위해 아래와 같이 지수 표현을 변경해줄 수 있다.
예를 들어,
a = 2.123123e+03 일 때
$ import pandas as pd
$ pd.options.display.float_format = '{:.5f}'.format
위와 같이 pandas 모듈을 사용하여 지수 표현을 바꿔주면
a = 2123.123으로 변경된다.
다시 원래 대로 돌아오길 원한다면 아래와 같이 수행하면 된다.
$ pd.reset_option('display.float_format')
위의 코드를 실행하였는데도 원래대로 지수함수로 표기되지 않는 경우,
아래의 코드로 변환이 가능하다.
$ pd.set_option('display.float_format', '{:.2e}'.format)
참고) https://financedata.github.io/posts/pandas-display-format.html
'Computer Setting > Python & ETC' 카테고리의 다른 글
python에서 다른 위치의 파일 import하는 방법 (0) | 2021.08.10 |
---|---|
gensim 설치 에러 (0) | 2021.08.09 |
python json 파일 한글 깨짐 현상 (0) | 2021.06.09 |
python json 파일 저장 및 불러오기 (0) | 2021.06.09 |
docker 비밀번호 변경 (0) | 2020.10.22 |
Comments