- R Object-oriented Programming
- Kelly Black
- 181字
- 2021-08-05 17:40:03
Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "A list is created using the list
command, and a variable can be tested or coerced using the is.list
and as.list
commands."
A block of code is set as follows:
> x = rnorm(5,mean=10,sd=3) > x [1] 11.172719 8.784284 10.074035 5.735171 10.800138 > pnorm(abs(x-10),mean=0,sd=3)-pnorm(-abs(x-10),mean=0,sd=3) [1] 0.30413363 0.31469803 0.01968849 0.84486037 0.21030971 >
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
> v <- c(1,3,5,7,-10) > v [1] 1 3 5 7 -10 > v[4] [1] 7 > v[2] <- v[1]-v[5] > v [1] 1 11 5 7 -10
New terms and important words are shown in bold.
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- 數(shù)據(jù)要素安全流通
- Unity 5.x Game AI Programming Cookbook
- Architects of Intelligence
- PySpark大數(shù)據(jù)分析與應(yīng)用
- 區(qū)塊鏈通俗讀本
- Remote Usability Testing
- Python金融數(shù)據(jù)分析(原書第2版)
- 深入淺出 Hyperscan:高性能正則表達(dá)式算法原理與設(shè)計(jì)
- SQL Server 2012數(shù)據(jù)庫管理教程
- IPython Interactive Computing and Visualization Cookbook(Second Edition)
- Filecoin原理與實(shí)現(xiàn)
- Microsoft Dynamics NAV 2015 Professional Reporting
- 數(shù)字化轉(zhuǎn)型實(shí)踐:構(gòu)建云原生大數(shù)據(jù)平臺(tái)
- 大數(shù)據(jù)技術(shù)體系詳解:原理、架構(gòu)與實(shí)踐
- Redis 6開發(fā)與實(shí)戰(zhàn)