- TOC
- tistory 목차
- tistory toc
- fig ax 사용
- jupyter notebook shell commands
- 티스토리 자동 목차
- matplotlib 객제 지향 방식
- magic command
- NewYork Times 읽기
- 티스토리 목차
목록전체 글 (27)
develop myself
추정: Estimation 표본에서 얻은 추정량(estimator)을 이용하여 모집단의 모수(parameter) 값을 추측하는 과정에서 사용되는 이론과 기법 통계량(statistics): 표본으로부터 얻을 수 있는 다양한 값들. 추정량(estimator): 통계량이 추정의 용도로 사용되는 경우, 그 통계량을 추정량이라고 한다. 점추정 모수의 위치와 가장 가깝다고 기대되는 하나의 점을 찾아서 그것을 추정값으로 정한다. 모평균 $\mu$의 점추정치 = 표본평균 모분산 $\sigma^2$의 점추정치 = 표본분산 점추정의 문제점: 추정의 신뢰성(reliability)이 어느 정도인지를 알 수 없다. 구간추정 점추정의 문제점을 보완 => 구간으로 추정 구간의 길이를 어떻게 정할 것인가? => 확률분포를 이용한다...

definition Here’s a simple definition of each: Percentiles: Range from 0 to 100. Quartiles: Range from 0 to 4. Quantiles: Range from any value to any other value. Note that percentiles and quartiles are simply types of quantiles. (percentiles과 quartiles은 quantiles의 종류들이다.) Some types of quantiles even have specific names, including: 4-quantiles are called quartiles. 5-quantiles are called quinti..

import numpy as np import matplotlib as mpl import matplotlib.pyplot as plt from scipy.stats import norm, t, chi2 z_values = np.linspace(-4, 4, 1000) pdf_values = norm.pdf(z_values) z_alpha=1.5 fill_color = (0, 0, 0, 0.1) # Light gray in RGBA format. line_color = (0, 0, 0, 0.5) # Medium gray in RGBA format. fig, axes = plt.subplots(figsize=(10,4)) axes.plot(z_values,pdf_values) axes.fill_between..
html 추가 관리 > 스킨편집 > html 편집 head 부분에 추가 기본모드에서도 잘 된다. 참고 https://yumy.tistory.com/82

Ludwig https://ludwig.guru/ Ludwig • Find your English sentence Linguistic search engine and smart translator that helps you find the perfect word or sentence to express your ideas. ludwig.guru 문장 검색 엔진이다. 특별한 점은 신뢰할만한 언론(뉴스 기사)에서 예문을 검색해준다는 것이다. 주로 New York Times, Economist, Guardian의 기사가 결과로 나온다. 링크는 각 언론사의 신문 기사로 연결된다. 구독 서비스로 운영되고 있지만, 구독하지 않고, 가입하지 않은 사용자에게는 하루 5번만 검색이 가능하다. 언론사 기사를 읽으려는데 구..

객체 지향 방식을 사용해야 하는 이유 2022 PyCon 이제현 님 발표: https://youtu.be/ZTRKojTLE8M 사용 예제 fig, axes = plt.subplots(ncols=5, figsize=(8,4)) for i, col in enumerate(['Temperature','Humidity','Light','CO2','HumidityRatio']): sns.boxplot(data=rooms[col],ax = axes[i]) axes[i].set_title(col) fig.tight_layout() fig.subplots_adjust(top=0.8) fig.suptitle("Room Occupancy") fig.set_facecolor("lightgray") plt.show() fig..

용어 - pdf: Probability density function - cdf: Cumulative distribution function. - ppf: Percent point function (inverse of cdf: cdf와 역함수 관계) pdf: 확률밀도함수 확률변수(X)의 분포를 나타내는 함수. 즉, 함수 값(그래프의 y축)은 분포를 나타낸다. - 일반 확률밀도함수 - 표준 확률밀도 함수 위 함수에서 $\mu$ = 0, $\sigma$=1 인 경우, 즉 $N(0,1)$ 연속 확률 분포이므로 특정 값에서는 확률을 구할 수 없다. 특정 구간에서의 확률을 구할 수 있고, 확률은 구간에서의 적분값이 된다. $P(a \leq X \leq b) = \int_a^b f(x) dx$ 모든 구간에서의 적분..
문자열: str 문자열 슬리아싱 가능: str[i:j] split() startswith() endswith() contains() 함수 설명 capitalize() 첫 문자를 대문자로하고, 나머지 문자를 소문자로 하는 문자열 반환 casefold() 모든 대소문자 구분을 제거 count(sub, [, start[, end]]) [start, end] 범위에서 부분 문자열 sub의 중복되지 않은 수를 반환 find(sub, [, start[, end]]) [start, end]에서 부분 문자열 sub가 문자열의 가장 작은 인덱스를 반환. sub가 발견되지 않는 경우는 -1 반환 rfind(sub, [, start[, end]]) [start, end]에서 부분 문자열 sub가 문자열의 가장 큰 인덱스를 ..