Skip to content

Commit 2be7268

Browse files
committed
qmd
1 parent fe7524d commit 2be7268

File tree

16 files changed

+1480
-375
lines changed

16 files changed

+1480
-375
lines changed

docs/03.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -427,6 +427,15 @@ <h2>03 데이터 분석에 필요한 연장 챙기기</h2>
427427

428428
<section class="slide level3">
429429

430+
<p><br> <br> <br> <br></p>
431+
<div class="quarto-figure quarto-figure-center">
432+
<figure>
433+
<p><img data-src="img/03-intro.png" style="width:45.0%"></p>
434+
</figure>
435+
</div>
436+
</section>
437+
<section class="slide level3">
438+
430439
<p><br></p>
431440
<h5 id="목차"><span class="font-jua larger">목차</span></h5>
432441
<p><span class="font-jua">03-1 변하는 수, ‘변수’ 이해하기</span>(<a href="#/변하는-수-변수-이해하기">link</a>)</p>

docs/03.qmd

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,17 @@ pd.options.display.show_dimensions = False
8383
:::
8484

8585

86+
---
87+
88+
<br>
89+
<br>
90+
<br>
91+
<br>
92+
93+
94+
![](img/03-intro.png){width=45% fig-align="center"}
95+
96+
8697
---
8798

8899
<br>
@@ -106,7 +117,6 @@ pd.options.display.show_dimensions = False
106117

107118
## 03-1 변하는 수, '변수' 이해하기{background-color="#FFCE32" transition="fade"}
108119

109-
110120
---
111121

112122
#### 변수(variable)

docs/03_files/libs/revealjs/dist/theme/quarto.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/04.html

Lines changed: 108 additions & 65 deletions
Large diffs are not rendered by default.

docs/04.qmd

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,16 @@ pd.options.display.show_dimensions = False
8282

8383
:::
8484

85+
---
86+
87+
<br>
88+
<br>
89+
<br>
90+
<br>
91+
92+
93+
![](img/04-intro.png){width=40% fig-align="center"}
94+
8595

8696
---
8797

@@ -255,7 +265,7 @@ df_exam # 출력
255265

256266
```{python}
257267
#| echo: false
258-
df_exam = pd.read_excel('../../Data/excel_exam.xlsx')
268+
df_exam = pd.read_excel('../Data/excel_exam.xlsx')
259269
df_exam
260270
```
261271

@@ -396,7 +406,7 @@ df_csv_exam
396406

397407
```{python}
398408
#| echo: false
399-
df_csv_exam = pd.read_csv('../../Data/exam.csv')
409+
df_csv_exam = pd.read_csv('../Data/exam.csv')
400410
df_csv_exam
401411
```
402412

docs/04_files/libs/revealjs/dist/theme/quarto.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/05.html

Lines changed: 393 additions & 298 deletions
Large diffs are not rendered by default.

docs/05.qmd

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,15 @@ pd.options.display.show_dimensions = False
8383
:::
8484

8585

86+
---
87+
88+
<br>
89+
<br>
90+
91+
92+
![](img/05-intro.png){width=50% fig-align="center"}
93+
94+
8695
---
8796

8897
<br>
@@ -122,7 +131,7 @@ exam = pd.read_csv('exam.csv')
122131
```{python}
123132
#| echo: false
124133
import pandas as pd
125-
exam = pd.read_csv('../../Data/exam.csv')
134+
exam = pd.read_csv('../Data/exam.csv')
126135
```
127136

128137
---
@@ -205,7 +214,7 @@ mpg = pd.read_csv('mpg.csv')
205214
```{python}
206215
#| echo: false
207216
# mpg 데이터 불러오기
208-
mpg = pd.read_csv('../../Data/mpg.csv')
217+
mpg = pd.read_csv('../Data/mpg.csv')
209218
```
210219

211220
::: {.fragment}
@@ -317,7 +326,7 @@ df.head()
317326

318327
```{python}
319328
#| echo: false
320-
df = pd.read_csv('../../Data/exam.csv')
329+
df = pd.read_csv('../Data/exam.csv')
321330
df.head()
322331
```
323332

@@ -459,7 +468,7 @@ Q3. 데이터 일부를 출력해 변수명이 바뀌었는지 확인해 보세
459468

460469
```{python}
461470
#| echo: false
462-
pd.read_csv('../../data/mpg.csv').rename(columns = {'cty' : 'city', 'hwy' : 'highway'}).head()
471+
pd.read_csv('../Data/mpg.csv').rename(columns = {'cty' : 'city', 'hwy' : 'highway'}).head()
463472
464473
```
465474

@@ -475,7 +484,7 @@ mpg_new = mpg.copy() # 복사본 만들기
475484

476485
```{python}
477486
#| echo: false
478-
mpg_new = pd.read_csv('../../data/mpg.csv')
487+
mpg_new = pd.read_csv('../Data/mpg.csv')
479488
```
480489

481490
---
@@ -821,7 +830,7 @@ count_test.plot.bar(rot = 0) # 빈도 막대 그래프 만들기
821830

822831
```{python}
823832
#| echo = F
824-
midwest = pd.read_csv('../../data/midwest.csv')
833+
midwest = pd.read_csv('../Data/midwest.csv')
825834
```
826835

827836
```{python}

docs/05_files/libs/revealjs/dist/theme/quarto.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/06.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,15 @@ <h2>06 자유자재로 데이터 가공하기</h2>
429429

430430
<section class="slide level3">
431431

432+
<p><br> <br> <br></p>
433+
<div class="quarto-figure quarto-figure-center">
434+
<figure>
435+
<p><img data-src="img/06-intro.png" style="width:60.0%"></p>
436+
</figure>
437+
</div>
438+
</section>
439+
<section class="slide level3">
440+
432441
<p><br></p>
433442
<h5 id="목차"><span class="font-jua larger">목차</span></h5>
434443
<p><span class="font-jua">06-1 데이터 전처리 - 원하는 형태로 데이터 가공하기</span>(<a href="#/데이터-전처리---원하는-형태로-데이터-가공하기">link</a>)</p>

0 commit comments

Comments
 (0)