- 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.
- Test-Driven Development with Mockito
- SQL Server 2008數(shù)據(jù)庫應用技術(第二版)
- 大數(shù)據(jù)可視化
- 區(qū)塊鏈通俗讀本
- 數(shù)據(jù)要素五論:信息、權屬、價值、安全、交易
- 數(shù)據(jù)庫技術實用教程
- Hadoop大數(shù)據(jù)開發(fā)案例教程與項目實戰(zhàn)(在線實驗+在線自測)
- Hadoop集群與安全
- SAS金融數(shù)據(jù)挖掘與建模:系統(tǒng)方法與案例解析
- 機器學習:實用案例解析
- 離線和實時大數(shù)據(jù)開發(fā)實戰(zhàn)
- 標簽類目體系:面向業(yè)務的數(shù)據(jù)資產設計方法論
- 數(shù)據(jù)挖掘算法實踐與案例詳解
- 從零進階!數(shù)據(jù)分析的統(tǒng)計基礎(第2版)
- Managing Software Requirements the Agile Way