作者celestialgod (天)
看板Statistics
标题Re: [程式] SAS,R normal correlation model图形制
时间Tue Oct 25 21:09:27 2016
※ 引述《linda841004 (水凝结)》之铭言:
: [软体程式类别]:
: SAS、R
: [程式问题]:
: normal correlation model 图形制作
: [软体熟悉度]:
: 语言:新手
: SAS:熟悉
: [问题叙述]:
: 请问如何使用SAS或R语言做出normal correlation model图形
: 如下图:
: http://i.imgur.com/t87Cyh8.jpg
: 有没有人曾经做过?
: 或是可以稍微指点一下
: [程式范例]:
: 无
: -----
: Sent from JPTT on my HTC_M8Sx.
我只会用R...
我给一点示范R code
library(data.table)
library(lattice)
pts <- seq(-5, 5, length.out = 40)
DT <- data.table(expand.grid(pts, pts))
# assume two-dimensional normal distribution with identity covariance
DT[ , density := dnorm(Var1) * dnorm(Var2)]
# plot
wireframe(density ~ Var1 + Var2, DT, drape = TRUE)
成果图:
http://imgur.com/a/Jy09h
--
R资料整理套件系列文:
magrittr #1LhSWhpH (R_Language) https://goo.gl/OBto1x
data.table #1LhW7Tvj (R_Language) https://goo.gl/QFtp17
dplyr(上.下) #1LhpJCfB,#1Lhw8b-s (R_Language) https://goo.gl/GcfNoP
tidyr #1Liqls1R (R_Language) https://goo.gl/pcq5nq
pipeR #1NXESRm5 (R_Language) https://goo.gl/cDIzTh
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 118.170.41.113
※ 文章网址: https://webptt.com/cn.aspx?n=bbs/Statistics/M.1477400971.A.FD5.html
1F:推 linda841004: 感谢感谢,虽然不太会用R 我会好好研究 10/26 14:27
2F:→ celestialgod: 如果要非独立的话,用MASS套件的dmvnorm 10/26 19:13