- Simulation for Data Science with R
- Matthias Templ
- 86字
- 2021-07-14 11:17:04
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
R code words in text, filenames, file extensions, pathnames, and dummy URLs are shown as follows:
A block of code is set as follows:
[default] love <- function(t, x, parms){ with(as.list(c(parms, x)), { dPrince_Harry <- a * Chelsy_Davy dChelsy_Davy <- -b * Prince_Harry res <- c(dPrince_Harry, dChelsy_Davy) list(res) }) }
Any command-line input or output is written as follows:
dat <- matrix(c(104,11037,189,11034),2,2, byrow=TRUE) ## Loading required package: grid > confint(oddsratio(dat, log=FALSE)) ## 2.5 % 97.5 % ## 0.4324132 0.6998549
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
推薦閱讀
- Kibana Essentials
- 架構不再難(全5冊)
- Cross-platform Desktop Application Development:Electron,Node,NW.js,and React
- 動手玩轉Scratch3.0編程:人工智能科創教育指南
- Mastering Entity Framework
- Linux環境編程:從應用到內核
- 區塊鏈技術進階與實戰(第2版)
- MATLAB GUI純代碼編寫從入門到實戰
- SQL Server 2016 從入門到實戰(視頻教學版)
- UML2面向對象分析與設計(第2版)
- Cocos2d-x by Example:Beginner's Guide(Second Edition)
- Python數據可視化之美:專業圖表繪制指南(全彩)
- Java Web應用開發給力起飛
- 征服C指針(第2版)
- Java網絡編程實用精解