-
Notifications
You must be signed in to change notification settings - Fork 1
/
pandasai.qmd
66 lines (51 loc) · 1.51 KB
/
pandasai.qmd
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
title: "chatGPT"
subtitle: "판다스 AI"
description: |
파이썬 판다스 AI
author:
- name: 이광춘
url: https://www.linkedin.com/in/kwangchunlee/
affiliation: 한국 R 사용자회
affiliation-url: https://github.com/bit2r
title-block-banner: true
#title-block-banner: "#562457"
format:
html:
css: css/quarto.css
theme: flatly
code-fold: true
code-overflow: wrap
toc: true
toc-depth: 3
toc-title: 목차
number-sections: true
highlight-style: github
self-contained: false
filters:
- lightbox
lightbox: auto
link-citations: true
knitr:
opts_chunk:
message: false
warning: false
collapse: true
comment: "#>"
R.options:
knitr.graphics.auto_pdf: true
editor_options:
chunk_output_type: console
notebook-view:
- notebook: jupyterlab/pandasai.ipynb
title: "PandasAI 쥬피터 노트북"
---
[PandasAI](https://github.com/gventuri/pandas-ai)는 널리 사용되는 데이터 분석 및 조작 도구인 Pandas에 생성형 인공지능 기능을 추가한 Python 라이브러리다. 이 라이브러리는 판다스와 함께 사용하도록 설계되었으나 판다스를 대체할 수는 없다.
이유는 판다스 문법에 맞는 파이썬 코드를 작성하는 용도에 적합하기 때문이다.
# 시각화
:::{#viz layout-ncol=2}
{{< embed jupyterlab/pandasai.ipynb#viz-gdp >}}
{{< embed jupyterlab/pandasai.ipynb#gdp-happy >}}
:::
# 코드 설정
{{< embed jupyterlab/pandasai.ipynb#llm-code echo=true >}}