由买买提看人间百态

topics

全部话题 - 话题: plot
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
l*****k
发帖数: 587
1
来自主题: Statistics版 - R kmeans issue, plot result
thanks, did try pca, I just realized for doing the plot
it is only good for 2 or 3 variable matrix.
A*******s
发帖数: 3942
2
来自主题: Statistics版 - 关于REGRESSION MODEL里的RESIDUL PLOT
做transformation就是要为了消除residual的pattern,所以residual plot看的是
transform以后的residual

MODEL
j***3
发帖数: 142
3
来自主题: Statistics版 - 如何plot巨大data set的heatmap
一条直线上有大约 2 million 个点。
现在每个点和其他任何一个点都有一个interaction score,
在一定的score threshold 下现在已经有~ 10^12个这样的score。
data是这样的:
position1 position2 interaction_score
...
请问什么程序能handle这么大的data来plot interaction heatmap?
谢谢了。
c******d
发帖数: 306
4
来自主题: Statistics版 - how to plot multiple boxplot in one graph
and with a curve of each mean. Not familiar with R plot. thanks for help.
j***3
发帖数: 142
5
来自主题: Statistics版 - [R] R plot histogram question about breaks
When plotting histogram in R, how exactly R is using breaks? can someone
help me if I understand correctly?
e.g.
breaks=c(0,1,2,3)
default is right= TURE, means the following three bins:
(0,1],(1,2],(2,3]
or
???
so if the entries is 0, they will not be counted?
if I want to include the 0 class in the first bin, I use right= FALSE, but
then the 3 is not included?
is there some way I can set a bin as just one point, e.g. 0 ?
thanks!
w******n
发帖数: 309
6
来自主题: Statistics版 - 请教R 的高手一个PLOT的问题
我想画一个STEP FUNCTION, 我选择plot 里面的TYPE = "S", 但是总是有VERTICAL
LINE, 我怎么画没有VERTICAL LINE的STEP FUNCTION呢?
多谢!
R*********r
发帖数: 225
7
来自主题: Statistics版 - 请教R 的高手一个PLOT的问题
your r code that generate the plot.
c*****m
发帖数: 4817
8
来自主题: Statistics版 - [R] how to use different font in a plot?
Can anyone tell me how to use italic font in a plot?
I know how to do it for whole title, but what about I just want to use a
different font (bold or italic) or one word in the title or label? thanks
f******9
发帖数: 267
9
来自主题: Statistics版 - R plot ylab horizontal
How to make a plot in R with horizontal ylab? Thanks!
f***a
发帖数: 329
10
来自主题: Statistics版 - R plot ylab horizontal
plot(...,las=1)
f******9
发帖数: 267
11
来自主题: Statistics版 - R plot ylab horizontal

谢谢,但这个只能保证y轴上的每个数字是水平的,我想要y轴的名称水平,比如plot
heart disease vs snoring,我想要
heart disease这几个单词水平的,而不是和y axis平行
r*****l
发帖数: 457
12
来自主题: Statistics版 - 3d plot in R 求救,updated
如何在R中作3 dimension 的 plot。
我用rgl中的plot3d
可是我想把这些data points 按照条件有不同的颜色。不知道如何做。
R 高手帮帮忙阿
我又用了scatterplot3d()。可是还是没有add的选项。不能把多种数据以不用颜色表示出来
s***t
发帖数: 125
13
自己搞个方程,打算用list()来output产生的数据,又想同时用plot把产生的数据画出
来,这样应该
怎么做?
谢谢!
a********s
发帖数: 188
14
不太懂你的意思, 不能用plot这个命令吗?
a********s
发帖数: 188
15
我的只能输出结果,不能得到图,换了一下顺序好了。
fn1=function(x,y)
{
plot(x,y)
return(x+y)
}
k*******a
发帖数: 772
16
plot(x,type="l")
lines(y,type="l")
not sure I understand correctly, is this what you want?

y's
O*****y
发帖数: 222
17
plot(x,type="l")
points(y, type="l")
强烈推荐看一下 An introduction to R

without
j*******2
发帖数: 309
18
来自主题: Statistics版 - Is STATA better than SAS and R in plotting?
This is what I found at work. Are there any procedures in SAS can give good
quality plots comparable to STATA? Any other advantage of STATA?
j*******2
发帖数: 309
19
来自主题: Statistics版 - Is STATA better than SAS and R in plotting?
You mean SAS doesn't care? I started to use STATA for plotting.
l********0
发帖数: 11
20
来自主题: Statistics版 - 用R做Forest Plot求助
用R(Package是rmeta)做出来的Forest Plot,插入到slide里面就显得非常小.图的宽度是可以设定任何值的,但高度不能设定,而且x,y轴也是不管设定什么范围,出来的图还是default的范围.不知道怎么设定图本身的高度和轴的范围。请教这里的高手,非常感谢!
s******5
发帖数: 513
21
来自主题: Statistics版 - R plot question: 如何把图黏在一起
我想把四个plot黏在一起,搞得2*2 那种,已经找到了par(mfow=(2,2)),可是发现这样
排出来的图间隔太大,有什么办法可以准确控制每个图的起始点?
大概用什么命令? google了一天也没搞定来着的,郁闷的慌~~
o****o
发帖数: 8077
22
来自主题: Statistics版 - How to make image.plot in sas
is this giving you a jump start?
*******************************;
data ss;
set ss;
if z=-1 then x2=.;
else x2=x;
run;
ods html ;
symbol1 value='squarefilled';
proc gplot data=ss;
plot y*x2 =z ;
label x2="X" y="Y";
run;quit;
ods html close;
f*******e
发帖数: 51
23
来自主题: Statistics版 - 问个SAS calibration plot的问题
SAS Logistic 里面只有Hosmer-Lemeshow Test没看见有calibration plot.
请问有什么办法画这个calibration curve?
多谢
R******d
发帖数: 1436
24
就像pca plotting一样。
多谢。
数据大概是这样:
color a b
blue 0.132188 0.072001
red 0.158483 -0.00869
red 0.175728 0.014197
red 0.201617 -0.07176
blue 0.18991 -0.031137
white 0.197906 -0.053931
blue 0.197481 -0.080661
white 0.157065 0.045186
blue 0.096551 0.185558
d******a
发帖数: 12
25
Anyone who knows how to plot cumulative incidence using Stata?
If you can tell me about the commands, that'll be great.
Green hand.
Look forward to hearing from you experts.
Thank you so much!
my email: d******[email protected]
a***e
发帖数: 1627
26
请教各位,如何customize kaplan meier plot in SAS,
想改x-axis的tick-mark。。同时想做一些变换。。。
网上有很多macro的方法,可是都没有贴code
哪位大牛如果有,大包子重谢
n**m
发帖数: 156
27
I'm using proc glimmix to run cumulative logit model. Boss asks me to plot
the predicted probability to make the result easier to understand. But can't
find an easy approach to do it. Any one has idea? Thanks.
s********a
发帖数: 154
28
来自主题: Statistics版 - 问个低级R plot问题
split.screen(figs=c(2,3))
screen(4) will plot in the 1st col of 2nd row
c**i
发帖数: 234
29
Residual vs fitted plot明显呈几根线,跟链接里面的图很相似。
http://stats.stackexchange.com/questions/25068/interpreting-plo
不知道是什么原因,用了NBD,应该不会是因为overdisperse吧。data里面75% 是0,是
不是应该用zero inflated NB.
在线急等各位大牛回复。
g******2
发帖数: 234
30
来自主题: Statistics版 - 如何做microarray的scatter plot图?
suppose your data is a data frame with 2 columns: x and y.
data$group <- 1
data$group[data$x < - log(2)] <- 2
data$group[data$x > log(2)] <- 3
plot(data$x[data$group == 1], data$y[data$group == 1], xlab = "x", ylab = "y
", xlim = range(data$x), ylim = range(data$y))
points(data$x[data$group == 2], data$x[data$group == 2], col = "blue")
points(data$x[data$group == 3], data$x[data$group == 3], col = "red")
w*******4
发帖数: 300
31
一个linear regression model, residual vs predicted value 的plot 是一个被填满
的菱形,基本上是一个正方形rotate45度。这种情况需要做什么样的transformation?
谢谢。
m*****s
发帖数: 156
32
your residual plot looks good to me
s*****r
发帖数: 223
33
来自主题: Statistics版 - plot in R
上 R 的课, 老师要求plot fig 1, 我能画出大致相同的(fig 2) , 但有3个小地方
, 我不能实现(红色的 X)。
加什么code 可以实现?
谢谢
h***i
发帖数: 3844
34
来自主题: Statistics版 - plot in R
plot null, do not add box.
s*****r
发帖数: 223
35
来自主题: Statistics版 - plot in R
谢谢大家
现在更像了(除了字体)
需要
plot(bty="n")
r*****g
发帖数: 99
36
我的code是:
%CIF(Data=five,out=fiveestimate, time=T, status=indicat, event=1, censored=0
,group=gp,alpha=.05, rho=0,se=1,TITLE=Figure1,
TITLE2=Adverse Event by Randomized Group);
可是出来的plot显示不出title,显示出来的是“&title”和“&title2"
sas log没有任何错误提示信息
这是怎么回事呢?
n*******y
发帖数: 437
37
来自主题: Statistics版 - 求助 R density plot 出现波纹。。。
hello大家好 我R用了一阵也不是太熟 请问,当数据点少的时候density plot出
现波纹怎么解决? 谢谢!
code:
# show fringes
test = as.data.frame( sample(0:5,10000,replace=T) )
colnames(test) = c('mon')
ggplot(test, aes(x=mon)) + geom_density(binwidth=1, size=1)
# normal
test = as.data.frame( sample(0:20,10000,replace=T) )
colnames(test) = c('mon')
ggplot(test, aes(x=mon)) + geom_density(binwidth=1, size=1)
n*******y
发帖数: 437
38
来自主题: Statistics版 - 求助 R density plot 出现波纹。。。
哦谢谢~
你是不是说,把它作为pmf,用histogram来做图?
(pmf/pdf跟histogram/density plot有关系吗。。。)
w*****1
发帖数: 473
39
来自主题: Statistics版 - 有关manhattan plot
我用R package 'gap'画manhattan plot, 请问为什么横坐标总是为什么按照染色体顺
序排列,我的输入文件已经按照chromosome从1到21排列了(我画的是老鼠的样本,而
且也设置成数值类型了,为什么每次画出来都是1,12,13。。。。。19,2,3,。。
。9,10,11,20,21。谢谢!
b******8
发帖数: 31
40
哪位大侠给推荐个scientific plotting lib/software:
免费的。
能处理大数据量(比如一张图上画好多xxoo...的散点)。
最好还能实时。
不需要fancy/publication style的美工。
总结一下就是:糙快猛,不要钱。
试了试 Python/matplotlib, 还有R,感觉不给力。
不知 gnuplot 如何?
b*******x
发帖数: 100
41
来自主题: Statistics版 - Any R S4 objects tutorial
汗。。。
跟list不太是一回事儿。。。
常见的是s3 method,比如说,你用plot函数,根据传递的参数不同,会相应出来不同
的结果。你
只需要一个generic function来定义很多method,但是s3缺点是,没法validate参数的
class,命名方法不严谨
methods('plot')
[1] plot.acf* plot.data.frame* plot.Date*
[4] plot.decomposed.ts* plot.default plot.dendrogram*
[7] plot.density plot.ecdf plot.factor*
[10] plot.formula* plot.hclust* plot.histogram*
[13] plot.HoltWinters* plot.isoreg* plot.lm
[16] plot.medpolish* p
g****g
发帖数: 1828
42
来自主题: WaterWorld版 - Normal distribution
In probability theory, the normal (or Gaussian) distribution, is a
continuous probability distribution that is often used as a first
approximation to describe real-valued random variables that tend to cluster
around a single mean value. The graph of the associated probability density
function is “bell”-shaped, and is known as the Gaussian function or bell
curve:[nb 1]
f(x) = \tfrac{1}{\sqrt{2\pi\sigma^2}}\; e^{ -\frac{(x-\mu)^2}{2\sigma^2}
},
where parameter μ is the mean (location of the pe... 阅读全帖
f**d
发帖数: 768
43
来自主题: Neuroscience版 - eBook: From computer to brain
这是一本计算神经科学的优秀著作,全文拷贝这里(图和公式缺),有兴趣的同学可以
阅读
如需要,我可以分享PDF文件(--仅供个人学习,无商业用途)
From Computer to Brain
William W. Lytton
From Computer to Brain
Foundations of Computational Neuroscience
Springer
William W. Lytton, M.D.
Associate Professor, State University of New York, Downstato, Brooklyn, NY
Visiting Associate Professor, University of Wisconsin, Madison
Visiting Associate Professor, Polytechnic University, Brooklyn, NY
Staff Neurologist., Kings County Hospital, Brooklyn, NY
In From Computer to Brain: ... 阅读全帖
l****z
发帖数: 29846
44
Muslim 'Refugees' and Terrorism in America
How many Americans will Obama’s Muslim migrants kill?
Daniel Greenfield @ FrontPageMag.com
Daniel Greenfield, a Shillman Journalism Fellow at the David Horowitz
Freedom Center, is a New York writer focusing on radical Islam.
Before 9/11, the trial run for the attack was the World Trade Center bombing
. The key figures in that attack, from Ramzi Yousef, the nephew of 9/11
planner Khalid Sheikh Mohammed, to the Blind Sheikh, whose ambitious plans
involved... 阅读全帖
p****s
发帖数: 3184
45
摘要:
In market economies, per capita GDP is directly proportional to the
population fraction with verbal IQ equal to or greater than 106.
We can make a pretty good guess. In all his versions, Man is the product of
adaptation to environments that existed more than 50,000 years ago. Africa,
Europe and Asia presented three distinct adaptational challenges resulting
in three major races: Negroid, Caucasoid and Mongoloid, each differing from
the other in certain physical, mental and psychological aspe... 阅读全帖
f*******w
发帖数: 407
46
来自主题: StartUp版 - 找人做两个网页,有意者请进
找人做两个网页,有意者请进
比常见的稍微复杂一点,但应该不会太难。请站内联系。
Prefer to be done using JavaScript and php.
Page # 1: a dynamic table with functions to add/delete row and column. The
content of the table, cell values, row/column titles, are all retrieved from
database. There is an "add new column"/"add new row" button at the corners
of the table. Clicking the button, the table will add column/row to the
existing table. The content of the cells of the added column/row are to
selected from drop down list shown in the ce... 阅读全帖
m****s
发帖数: 18160
47
来自主题: TrustInJesus版 - [合集] 查经贴-使徒行传
☆─────────────────────────────────────☆
Dramaer (不要问我从那里来) 于 (Fri Oct 22 12:02:52 2010, 美东) 提到:
Act 1:1-11 Jesus Taken Up Into Heaven
1In my former book, Theophilus, I wrote about all that Jesus began to do and
to teach 2until the day he was taken up to heaven, after giving
instructions through the Holy Spirit to the apostles he had chosen. 3After
his suffering, he showed himself to these men and gave many convincing
proofs that he was alive. He appeared to them over a period of forty days
... 阅读全帖
f*******w
发帖数: 407
48
来自主题: BuildingWeb版 - 找人做两个网页,有意者请进
找人做两个网页,有意者请进
本人不是IT,所以希望找人来帮尽快完成。比常见的稍微复杂一点,但应该不会太难。
请站内联系。
Prefer to be done using JavaScript and php.
Page # 1: a dynamic table with functions to add/delete row and column. The
content of the table, cell values, row/column titles, are all retrieved from
database. There is an "add new column"/"add new row" button at the corners
of the table. Clicking the button, the table will add column/row to the
existing table. The content of the cells of the added column/row are to
selected from drop down... 阅读全帖
g****g
发帖数: 1828
49
来自主题: Linux版 - rsync error
嗯,这次好像没问题。 文件没有做任何改变。
receiving file list ...
1473 files to consider
deleting cpvnote/figs/plots/PreTag (Case Conflict 1)/CVS/
deleting cpvnote/figs/plots/PreTag (Case Conflict 1)/
cpvnote/figs/plots/
cpvnote/figs/plots/Pretag/
cpvnote/figs/plots/Pretag/CVS/
cpvnote/figs/plots/Pretag/CVS/Entries
2 100% 1.95kB/s 0:00:00 (xfer#1, to-check=170/1473)
cpvnote/figs/plots/Pretag/CVS/Repository
55 100% 53.71kB/s 0:00:00 (xfer#2, to-check=169/1473)
cpvnote/figs/plots/Preta... 阅读全帖
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)