author
: 별을셀, 010-5102-0841date
: 2016-07-13site status
: experimentalsite etc.
: updated once in a while, not formal안녕하세요, 수학을 잘 가르치는 ★별을셀수학입니다.
개인적 수학 아이디어의 많은 부분에 대하여 Georg Cantor와 Kurt Gödel에 대하여 감사합니다. 세속의 수학1은 이들의 것과 많이 비슷하지는 않습니다. 세속의 수학에도 많은 감사를 드립니다.
Literate Programming 관련해서는 20세기 위대한 컴퓨터과학자인 Knuth (1984) 에게 많은 아이디어를 얻었습니다.
여러 분과 함께 세속의 수학을 합니다. 동시에 개인으로서는 상상과 로직의 동산에서 자신만의 수학적 사고를 하고자 합니다.
가르침과 관련해서는 소수의 작은 학습장을 고집합니다.
미사여구와 그럴싸한 자료와 언어로 학생과 학부모님들을 현혹하지 않습니다.
쏟아지는 광고처럼 누가 어떤 책을 썼고, 어떤 특별한 문제집을 풀어야 되고, 저명한 누구에 의하면 수학 학습은 이렇게 해야 된다는 등 그런 말씀은 드리지 않습니다.
정성과 진심을 가지고 함께 공부합니다.
수학을 공부함에 있어, 결과보다는 과정에 최선을 다하고, 어렵고 힘듦이 있음을 주저하지 않으며 나아갈, 의지의 학생님과 함께 합니다.
여러 분은 과정에 최선을 다하고 별을셀은 결과를 드리고자 노력합니다.
아래에서 원장의 수학철학보다는 입시관점에서 안내드림을 양해부탁드립니다.
경기도 군포시 번영로 489 중앙타워 2층 ★별을셀수학
지번 : 경기도 군포시 산본동 1142-7
4호선 산본역에서 하차하여 3번출구로 나오시면 …
산본역 또는 6단지 세종에서 하차
롯데피트인 맞은편 건물입니다.
컴퓨터 언어 하나쯤은 잘 사용하면 좋습니다. 대학교에 들어가면 C 언어 또는 Python을 주로 배우게 될 것입니다. 그 때 피하지 말고 즐기시길. 아래 언어들은 데이터과학쪽이나 논문 쓸 때 활용하면 좋습니다. Quarto 오픈소스 샘플을 가져왔습니다.
Combine Jupyter notebooks with flexible options to produce production quality output in a wide variety of formats. Author using traditional notebook UIs or with a plain text markdown representation of notebooks.
Quarto is a multi-language, next generation version of R Markdown from Posit, with many new new features and capabilities. Like R Markdown, Quarto uses knitr to execute R code, and is therefore able to render most existing Rmd files without modification.
---
title: "ggplot2 demo"
author: "Norah Jones"
date: "5/22/2021"
format:
html:
fig-width: 8
fig-height: 4
code-fold: true
---
## Air Quality
@fig-airquality further explores the impact of temperature on ozone level.
```{r}
#| label: fig-airquality
#| fig-cap: "Temperature and ozone level."
#| warning: false
library(ggplot2)
ggplot(airquality, aes(Temp, Ozone)) +
geom_point() +
geom_smooth(method = "loess")
```
Combine markdown and Julia code to create dynamic documents that are fully reproducible. Quarto executes Julia code via the IJulia Jupyter kernel, enabling you to author in plain text (as shown below) or render existing Jupyter notebooks.
---
title: "Plots Demo"
author: "Norah Jones"
date: "5/22/2021"
format:
html:
code-fold: true
jupyter: julia-1.8
---
## Parametric Plots
Plot function pair (x(u), y(u)).
See @fig-parametric for an example.
```{julia}
#| label: fig-parametric
#| fig-cap: "Parametric Plots"
using Plots
plot(sin,
x->sin(2x),
0,
2π,
leg=false,
fill=(0,:lavender))
```
Quarto includes native support for Observable JS, a set of JavaScript enhancements created by Mike Bostock (the author of D3). Observable JS uses a reactive execution model, and is especially well suited for interactive data exploration and analysis.
---
title: "observable plot"
author: "Norah Jones"
format:
html:
code-fold: true
---
## Seattle Precipitation by Day (2012 to 2016)
```{ojs}
data = FileAttachment("seattle-weather.csv")
.csv({typed: true})
Plot.plot({
width: 800, height: 500, padding: 0,
color: { scheme: "blues", type: "sqrt"},
y: { tickFormat: i => "JFMAMJJASOND"[i] },
marks: [
Plot.cell(data, Plot.group({fill: "mean"}, {
x: d => new Date(d.date).getDate(),
y: d => new Date(d.date).getMonth(),
fill: "precipitation",
inset: 0.5
}))
]
})
```
입시수학, 공업수학, 미적분, 일반 문제풀이,…↩︎