logo

📂동역학

줄리아에서 가로축과 세로축 서로 바꾸는 법

using Plots

name = ["Gaeul", "Yujin", "Rei", "Wonyoung", "Liz", "Leeseo"]
height = [164, 173, 170, 173, 171, 165]
bar(name, height)
bar(name, height, permute = (:y, :x))

줄리아에서 XLSX 파일 읽는 법

using XLSX, DataFrames, Plots

files = readdir() # 파일 목록 불러오기

file = files[1]
# for file = files 루프로 모든 파일 불러오기
xf = XLSX.readxlsx(file) # 다음과 같음: "Username_2023-11-24_003_After CAP 10 uM 30 sec_1x Rheobase.xlsx"
sh = xf[first(XLSX.sheetnames(xf))][:, 1:3]

indices = findall(ismissing.(sh[:,1]))
heads = [0; indices] .+ 4
tails = [indices .- 1; size(sh, 1)]

df_ = DataFrame[]
for (h, t) in zip(heads, tails)
    push!(df_, DataFrame(sh[h:t, :], ["Index", "Time", "Vmon"]))
end
p_ = plot.(getproperty.(df_, :Time), getproperty.(df_, :Vmon), legend = :none, color = :black)
png.(p_, ["series_$k.png" for k ∈ (1:length(p_))])

MAPE(Mean Absolute Precentage Error)

$$ {{ 1 } \over { n }} \sum_{k=1}^{n} {{ \left| x_{k} - \widehat{x}_{k} \right| } \over { x_{k} }} $$

https://www.sciencedirect.com/science/article/pii/S0169207016000121?via%3Dihub

텍에서 항의 갯수 나타내는 표현 \overbrace, \underbrace

레이텍에서 립숨(의미 없는 문자열) 사용하는 법

https://www.physicsread.com/latex-random-or-lorem-lipsum-dummy-text/

Spearman Correlation

KOSIS 국가데이터포털 소개 Introduction to KOSIS

https://kosis.kr/index/index.do

sensitive analysis

유전 알고리즘

MEP

https://arxiv.org/pdf/2110.00367