由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 求助 R density plot 出现波纹。。。
相关主题
问个sas小问题: 赋值macro variableR 求助: 有人熟悉ggplot吗? 求问legend 问题
被这个题搞死了,学统计的高手进来帮助一下R question about apply() and outer()
[R] R plot histogram question about breaks【R】保留matrix中某些值
SAS/S-plus/R 作图问题请教R:matrix
有数据,想知道是什么distribution,参数是什么,有免费工具吗?【包子】从excel读取数据到R的问题
请教一个r的问题用R出现怪问题。
Test for stationarity in time seriesR help
数据处理的问题,大家帮帮忙! (转载)SAS 中 proc iml 怎么生成data file?
相关话题的讨论汇总
话题: density话题: test话题: plot话题: 波纹话题: mon
进入Statistics版参与讨论
1 (共1页)
n*******y
发帖数: 437
1
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
2
如图
图1只有6个数据点,所以两个数据点之间会凹下去
图2数据点多了就正常了
请问图1要怎么办。。。谢谢!

【在 n*******y 的大作中提到】
: 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')

h***i
发帖数: 3844
3
6 points is good for pmf not pdf

【在 n*******y 的大作中提到】
: 如图
: 图1只有6个数据点,所以两个数据点之间会凹下去
: 图2数据点多了就正常了
: 请问图1要怎么办。。。谢谢!

v*******e
发帖数: 11604
4
修改下geom_density的参数。
n*******y
发帖数: 437
5
哦谢谢~
你是不是说,把它作为pmf,用histogram来做图?
(pmf/pdf跟histogram/density plot有关系吗。。。)

【在 h***i 的大作中提到】
: 6 points is good for pmf not pdf
1 (共1页)
进入Statistics版参与讨论
相关主题
SAS 中 proc iml 怎么生成data file?有数据,想知道是什么distribution,参数是什么,有免费工具吗?
关于处理两个csv文件交集和子集的问题请教一个r的问题
[SQL] just figured out how to loop through all columns in a tableTest for stationarity in time series
generating percentile-percentage charts (转载)数据处理的问题,大家帮帮忙! (转载)
问个sas小问题: 赋值macro variableR 求助: 有人熟悉ggplot吗? 求问legend 问题
被这个题搞死了,学统计的高手进来帮助一下R question about apply() and outer()
[R] R plot histogram question about breaks【R】保留matrix中某些值
SAS/S-plus/R 作图问题请教R:matrix
相关话题的讨论汇总
话题: density话题: test话题: plot话题: 波纹话题: mon