>RE::VISION CRM

R 데이터 분석

heatmap using scatterplot

YONG_X 2016. 8. 22. 15:50

df1 <- expand.grid(1:5,1:5)

df1$Var3 <- (1:25)^2

head(df1, 4)

plot(df1[,1:2], pch=15, col=ifelse(df1$Var3>max(df1$Var3)*1/3, ifelse(df1$Var3>max(df1$Var3)*2/3,"red", "green") , "blue"), cex=10, main="heatmap of frequency")

text(df1[,1:2],labels=df1$Var3, col="white")






'R 데이터 분석' 카테고리의 다른 글

[R분석] barplot 집단별 색상 구분표시 with 레전드 legend   (0) 2016.10.12
LGUP_BDAS _ 20161006  (0) 2016.10.06
[SCW.VEDAR] Part 2  (0) 2016.08.12
[SCW.VEDAR] Part 1  (0) 2016.08.12
[R분석] cluster based anomaly detection  (0) 2016.08.11