gpt4 book ai didi

r - 如何在同一图上叠加 2 条正态分布曲线?

转载 作者:行者123 更新时间:2023-12-02 01:11:57 25 4
gpt4 key购买 nike

我是 R 的新手,我面临着没有太多类资源的问题。我需要做一些我确信非常简单的事情。有人能指出我正确的方向吗?这是我的任务:

Let X denote the monthly return on Microsoft Stock and let Y denote the monthly return on Starbucks stock. Assume that X∼N(0.05,(0.10)2) and Y∼N(0.025,(0.05)2).

Using a grid of values between –0.25 and 0.35, plot the normal curves for X and Y. Make sure that both normal curves are on the same plot.

我只能生成一个随机生成的正态分布,但不是在同一个图上,也不是通过指定均值和标准偏差。非常感谢。

最佳答案

使用功能线或点,即

s <- seq(-.25,.35,0.01)
plot(s, dnorm(s,mean1, sd1), type="l")
lines(s, dnorm(s,mean2, sd2), col="red")

另外,检查函数 par(使用 ?标准杆)对于绘图选项,常用选项包括标签(xlab/ylab)、plotlimits(xlim/ylim)、颜色(col)等...

关于r - 如何在同一图上叠加 2 条正态分布曲线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16533089/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com