ANOVA
ANOVA
1.정의
여러집단 간 평균의 차이가 통계적으로 유의미한지 알아보는 방법이다
한국어로는 분산 분석으로 불린다.
2.오해 -> 집단간의 분석이 아닌 집단간의 평균을 분석하는 테스트임!
ANOVA 분석 가장 쉽게 정리하기 (분산분석 & F-검정)
1. ANOVA가 뭐야?
ANOVA (Analysis of Variance) = 분산분석
하는 일 한 줄 요약:
여러 집단의 평균이 서로 통계적으로 다르냐?를 검사하는 방법
예:
3가지 쿠키 레시피 평균 맛 점수가 다 같은지?
4개 치료 그룹의 평균 효과가 같은지?
...
Nonparametric Methods
1. Why do we need nonparametric tests?
Classical parametric tests like the t-test usually assume:
The data follow a normal distribution.
We estimate parameters of that distribution (mean, variance, …) and use them in the test.
In real data, the normality assumption is often violated.
Then we start to worry:
“Is it okay to use a t-te...
비모수 검정
1. 왜 비모수 검정이 필요할까?
t-검정 같은 모수 검정은 보통 이런 가정을 합니다.
데이터가 정규분포를 따른다.
그 분포의 모수(평균, 분산 등)를 추정해서 검정한다.
현실 데이터는 정규분포를 안 따르는 경우가 많습니다. 이때
“정규성 가정이 깨졌는데도 t-검정을 써도 되나…?” 하는 걱정이 생기죠.
즉, 샘플 수가 충분히 크면 샘플 평균은 정규분포를 따르기 때문에(중심극한정리),
많은 샘플 데이터가 정규분포에서 온 것처럼 가정하고 분석하는 경우가 많습니다.
하지만, 이런 가정을 만족하지 못하는 경우!
이럴 때 쓸 수 있는 방법이 비모수(nonparametric) 검정입니다.
여기서는 그...
Breast cancer model predicition
전체적인 코드 그림
3가지 모달리티(임상 + CNA + Mutation) → 하나의 큰 feature matrix → 공통 전처리 → 여러 ML 모델 비교 → 베스트 모델 시각화
임상 데이터 + 10년 생존 라벨 생성
clinical = pd.read_csv(..., sep="\t")
Overall Survival (Months)와 Overall Survival Status가 있는 환자만 필터
Overall Survival Status에서 "DECEASED" 여부로 사망 이벤트(event_death) 계산
10년 이내 사망이면 1, 그 외(1...
시간복잡도
title: Asymptotic Notation for Kids
sidebar:
nav: docs-en
aside:
toc: true
key: 20251121-en
tags: [algorithm, big-o, complexity]
lang: en
math: true
—
Asymptotic Notation, Super Simple
“Asymptotic notation” sounds scary,
but you can think of it as:
A way to compare how fast functions grow.
1. First: Feel the “growth speed”
When th...
시간복잡도
title: 초등학생도 이해하는 점근 표기법
sidebar:
nav: docs-ko
aside:
toc: true
key: 20251121
tags: [algorithm, big-o, complexity]
lang: ko
math: true
—
점근 표기법, 진짜 쉽게 이해하기
“점근 표기법(asymptotic notation)”이라고 하면 어려워 보이는데
사실 한 줄로 말하면 “함수가 얼마나 빨리 커지는지 비교하는 방법” 이야.
1. 먼저, “성장 속도”부터 느껴보자
숫자 n 이 커질 때, 아래 식들은 이렇게 커져:
n : 1, 2, 3, 4, … → 느리게 커짐
n^2: 1, 4...
Impedance Control
Definition of Impedance Control
1. Overview
When we want to design how much resistance (weight, spring-like feeling) a human feels from a robot arm or a rehabilitation robot,
one of the most common strategies is impedance control.
The basic idea of impedance control is simple:
“When a person pushes a joint, the joint should respond like...
67 post articles, 9 pages.