- R Machine Learning Essentials
- Michele Usuelli
- 163字
- 2021-08-05 17:08:43
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.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "Load the randomForest
package containing the random forest
algorithm."
A block of code is set as follows:
[default] arrayFeatures <- names(dtBank) arrayFeatures <- arrayFeatures[arrayFeatures != 'output'] formulaAll <- paste('output', '~') formulaAll <- paste(formulaAll, arrayFeatures[1]) for(nameFeature in arrayFeatures[-1]){ formulaAll <- paste(formulaAll, '+', nameFeature) } formulaAll <- formula(formulaAll)
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
n1 + n2 [1] 5 n1 * n2 [1] 6
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.
推薦閱讀
- Redis使用手冊(cè)
- Spark快速大數(shù)據(jù)分析(第2版)
- Access 2007數(shù)據(jù)庫應(yīng)用上機(jī)指導(dǎo)與練習(xí)
- 區(qū)塊鏈:看得見的信任
- 數(shù)據(jù)驅(qū)動(dòng):從方法到實(shí)踐
- 數(shù)據(jù)架構(gòu)與商業(yè)智能
- 數(shù)據(jù)驅(qū)動(dòng)設(shè)計(jì):A/B測(cè)試提升用戶體驗(yàn)
- 數(shù)據(jù)庫技術(shù)及應(yīng)用教程
- 白話大數(shù)據(jù)與機(jī)器學(xué)習(xí)
- 菜鳥學(xué)SPSS數(shù)據(jù)分析
- Gideros Mobile Game Development
- 實(shí)現(xiàn)領(lǐng)域驅(qū)動(dòng)設(shè)計(jì)
- 數(shù)據(jù)指標(biāo)體系:構(gòu)建方法與應(yīng)用實(shí)踐
- PostgreSQL高可用實(shí)戰(zhàn)
- Oracle 11g數(shù)據(jù)庫管理與開發(fā)基礎(chǔ)教程