楼主: ReneeBK
2667 12

Introduction to Scientific Programming and Simulation Using R [推广有奖]

  • 1关注
  • 62粉丝

VIP

学术权威

14%

还不是VIP/贵宾

-

TA的文库  其他...

R资源总汇

Panel Data Analysis

Experimental Design

威望
1
论坛币
49492 个
通用积分
53.3854
学术水平
370 点
热心指数
273 点
信用等级
335 点
经验
57815 点
帖子
4006
精华
21
在线时间
582 小时
注册时间
2005-5-8
最后登录
2023-11-26

+2 论坛币
k人 参与回答

经管之家送您一份

应届毕业生专属福利!

求职就业群
赵安豆老师微信:zhaoandou666

经管之家联合CDA

送您一个全额奖学金名额~ !

感谢您参与论坛问题回答

经管之家送您两个论坛币!

+2 论坛币
Introduction to Scientific Programming and Simulation Using R Second Edition 课
10 个回复 - 1613 次查看从今天开始陆续分享Introduction to Scientific Programming and Simulation Using R Second Edition的课后习题代码,欢迎感兴趣的一起讨论。 先发第三章的:2015-8-11 01:32 - kaifengedu - S-Plus&R专版

Introduction to Scientific Programming and Simulation Using R这本书的答案
3 个回复 - 589 次查看Introduction to Scientific Programming and Simulation Using R这本书的练习题答案~~2014-1-18 12:07 - yuejiajiagial - S-Plus&R专版

Introduction to Scientific Programming and Simulation Using R,第二版(原版PDF)
119 个回复 - 4113 次查看Owen Jones, "Introduction to Scientific Programming and Simulation Using R, Second Edition" English | ISBN: 1466569999 | 2015 | 606 pages | PDF | 8 MB        Learn How ...2015-5-11 11:14 - igs816 - 量化投资

2009新书Introduction to Scientific Programming and Simulation Using R
46 个回复 - 9408 次查看书主要内容:R编程和R模拟 Introduction to Scientific Programming and Simulation Using R by: Owen Jones, Robert Maillardet, Andrew Robinson Introduction to Scientific Programming and Simulation U ...2009-7-15 10:18 - chenguanghua - S-Plus&R专版

Introduction to Scientific Programming and Simulation Using R Second Edition
24 个回复 - 2325 次查看Introduction to Scientific Programming and Simulation Using R(Second Edition), Owen Jones, Robert Maillardet, and Andrew Robinson. This book has two principal aims:to teach scientific programmi ...2015-1-16 15:12 - BenjaminW - S-Plus&R专版

Introduction to Scientific Programming and Simulation Using R
11 个回复 - 2881 次查看此书的免费下载网址http://www.ebookee.net/Introduction-to-Scientific-Programming-and-Simulation-Using-R_297680.html 如果下载不了,我已上传文件,象征性的收1个论坛币。^_^2010-3-22 15:03 - 阿华田 - S-Plus&R专版

Introduction to Scientific Programming and Simulation Using R第二版
8 个回复 - 1539 次查看Introduction to Scientific Programming and Simulation Using R这本书今年七月份出了第二版 Series: Chapman & Hall/CRC The R Series ...2014-9-3 10:22 - ewanvg - S-Plus&R专版

Introduction to Scientific Programming and Simulation Using R
4 个回复 - 430 次查看内容隐藏需要,请点击进去查看2013-4-19 17:28 - johnzi0128 - 求助成功区

Introduction to Scientific Programming and Simulation Using R
4 个回复 - 1754 次查看Preface v I Programming 1 1 Setting up 3 1.1 Installing R 3 1.2 Starting R 3 1.3 Working directory 4 1.4 Writing scripts 5 1.5 Help 5 1.6 Supporting material 5 2 R as a calculating environmen ...2009-12-31 03:41 - aruba - S-Plus&R专版

Introduction to Scientific Programming and Simulation Using R Book
1 个回复 - 1095 次查看本人真的不想赚论坛币 但是实在是太穷了 只收取3个论坛币 发一本2009年出版的R语言 《Introduction to Scientific Programming and Simulation Using R Book》 相关词条:Simulation, Programming, Introduct ...2010-10-20 22:03 - nanawang - S-Plus&R专版

Introduction to Scientific Programming and Simulation Using R 2009年新书
13 个回复 - 2112 次查看Introduction to Scientific Programming and Simulation Using R By Owen Jones, Robert Maillardet, Andrew Robinson
  • Publisher: Chapman & Hall/CRC
  • Number Of Pages: 472
  • Publication Date: ...2009-12-24 12:42 - jobonet - S-Plus&R专版

  • 二维码

    扫码加我 拉你入群

    请注明:姓名-公司-职位

    以便审核进群资格,未注明则拒绝

    关键词:introduction Programming Simulation Scientific troduction 今天开始 练习题

    沙发
    ReneeBK 发表于 2016-1-29 10:38:00 |只看作者 |坛友微信交流群
    1. Examples
    2. ftn5 <- function(x) return(log(x)-exp(-x))
    3. bisection(ftn5, 1, 2, tol = 1e-6)
    复制代码


    https://cran.r-project.org/web/packages/spuRs/spuRs.pdf

    使用道具

    藤椅
    ReneeBK 发表于 2016-1-29 10:39:44 |只看作者 |坛友微信交流群
    1. Examples
    2. Q <- matrix(c(-24,24,0, 2,-14,12, 0,4,-4),
    3. nrow = 3, ncol = 3, byrow = TRUE)
    4. CMCSimulation(Q,0,1)
    复制代码

    https://cran.r-project.org/web/packages/spuRs/spuRs.pdf

    使用道具

    板凳
    ReneeBK 发表于 2016-1-29 10:40:26 |只看作者 |坛友微信交流群
    1. Examples
    2. library(MASS)
    3. s1 <- trapTransect(distances = 1:4, seed.counts = c(4, 3, 2, 0))
    4. allTraps <- transectHolder(s1, family="Weibull")
    5. fitDistances(allTraps, "exponential")
    复制代码




    使用道具

    报纸
    ReneeBK 发表于 2016-1-29 10:41:09 |只看作者 |坛友微信交流群
    1. Examples
    2. Q <- matrix(c(-24,24,0, 2,-14,12, 0,4,-4),
    3. nrow = 3, ncol = 3, byrow = TRUE)
    4. CMCSimulation(Q,0,1)
    5. 复制代码

    6. https://cran.r-project.org/web/packages/spuRs/spuRs.pdf
    复制代码

    使用道具

    地板
    ReneeBK 发表于 2016-1-29 10:42:07 |只看作者 |坛友微信交流群
    1. Examples
    2. ftn1 <- function(x) return(exp(exp(-x)))
    3. fixedpoint(ftn1, 2, tol = 1e-6)
    复制代码

    使用道具

    7
    ReneeBK 发表于 2016-1-29 10:42:57 |只看作者 |坛友微信交流群
    1. Examples
    2. P <- matrix(c(0.5,0.5,0,0,0.7,0.1,0.2,0,0,0.1,0.1,0.8,0,0,0.7,0.3),
    3. nrow = 4, ncol = 4, byrow = TRUE)
    4. statehist<-MCSimulation(P, 0, 3000)
    5. MCEstimation(statehist, 3)
    复制代码

    https://cran.r-project.org/web/packages/spuRs/spuRs.pdf

    使用道具

    8
    ReneeBK 发表于 2016-1-29 10:43:55 |只看作者 |坛友微信交流群
    1. Examples
    2. P <- matrix(c(0.5,0.5,0,0,0.7,0.1,0.2,0,0,0.1,0.1,0.8,0,0,0.7,0.3),
    3. nrow = 4, ncol = 4, byrow = TRUE)
    4. MCSimulation(P, 0, 250)
    5. https://cran.r-project.org/web/packages/spuRs/spuRs.pdf
    复制代码

    使用道具

    9
    ReneeBK 发表于 2016-1-29 10:44:55 |只看作者 |坛友微信交流群
    1. Examples
    2. transect.1 <- trapTransect(distances = 1:4,
    3. seed.counts = c(4, 3, 2, 0))
    4. transect.2 <- trapTransect(distances = 1:3,
    5. seed.counts = c(3, 2, 1))
    6. transect.3 <- trapTransect(distances=(1:5)/2,
    7. seed.counts = c(3, 4, 2, 3, 1))
    8. allTraps <- transectHolder(transect.1, transect.2, transect.3,
    9. family="Weibull")
    10. mean(allTraps)
    11. https://cran.r-project.org/web/packages/spuRs/spuRs.pdf
    复制代码

    使用道具

    10
    ReneeBK 发表于 2016-1-29 10:45:51 |只看作者 |坛友微信交流群
    1. Examples
    2. ftn4 <- function(x) {
    3. # returns function value and its derivative at x
    4. fx <- log(x) - exp(-x)
    5. dfx <- 1/x + exp(-x)
    6. return(c(fx, dfx))
    7. }
    8. newtonraphson(ftn4, 2, 1e-6)

    9. https://cran.r-project.org/web/packages/spuRs/spuRs.pdf
    复制代码

    使用道具

    您需要登录后才可以回帖 登录 | 我要注册

    本版微信群
    加好友,备注jltj
    拉您入交流群

    京ICP备16021002-2号 京B2-20170662号 京公网安备 11010802022788号 论坛法律顾问:王进律师 知识产权保护声明   免责及隐私声明

    GMT+8, 2024-9-17 14:21