728x90
In [ ]:
import sys
# print(sys.executable)
# print(sys.path)
In [ ]:
# !pip install lux-api
!jupyter nbextension install --py luxwidget
!jupyter nbextension enable --py luxwidget
In [ ]:
import pandas as pd
import lux
df = pd.read_csv("https://raw.githubusercontent.com/lux-org/lux-datasets/master/data/college.csv")
df
In [ ]:
import pandas as pd
import dtale
df = pd.read_csv("https://raw.githubusercontent.com/mwaskom/seaborn-data/master/titanic.csv")
dtale.show(df)
- PandasGUI
데이터 프레임 분석을 용이하게 도와주는 시스템 https://github.com/adamerose/PandasGUI
In [ ]:
import pandas as pd
from pandasgui import show
df = pd.DataFrame({'a':[1,2,3], 'b':[4,5,6], 'c':[7,8,9]})
show(df)
728x90
'Data Analytics with python > [Python Skill]' 카테고리의 다른 글
[Python] matplotlib 한글 글꼴 깨짐 현상 (0) | 2023.02.03 |
---|---|
[Python] 터미널에 모듈을 설치해도 jupyter notebook에서 모듈 설치가 안되는 경우 (0) | 2023.01.31 |
[Python] 라이브러리 수동 설치 (0) | 2023.01.31 |
[Python] 내가 만든 함수 파일(.py) 임포트 사용법 (0) | 2023.01.31 |
[Python] 깃허브에 있는 데이터 압축 풀고 읽어오는 방법 (0) | 2023.01.31 |
댓글