Statistics/R (3) 썸네일형 리스트형 [에러해결]cannot rescale a constant/zero column to unit variance prcomp in R prcomp로 PCA를 그리기위해 주성분 분석을 수행하던중 다음과 같은 에러를 만났다. "cannot rescale a constant/zero column to unit variance" Error in prcomp.default(toy, scale. = TRUE): cannot rescale a constant/zero column to unit variance Traceback: 1. prcomp(toy, scale. = TRUE) 2. prcomp.default(toy, scale. = TRUE) 3. stop("cannot rescale a constant/zero column to unit variance") 이는 PCA분석을 진행할때 사용되는 데이터 table의 열(column)중에 분산이 .. heatmap 그리고 저장하기 in R heatmap은 데이터 분석을 진행하다보면 scatter plot 만큼 접하기 쉬운 plot이다. matrix값을 ploting 하고 Hierarchical clustering 까지 확인할 수 있기때문에 인기가 많다. 오늘은 R로 heatmap그리는 법을 간단하게 알아보겠다. library(gplots) library(RColorBrewer) 우선 위의 라이브러리를 설치하고 import 한다. input table은 아래와같이 numeric matrix로 이루어져있어야한다. 1. 기본적인 코드 mypalette R - CI(confidence Interval)구하기 n=100, 평균 = 100 표준편차 = 10일때 95%(=1.96%) 신뢰 구간 구하기 n 이전 1 다음