- Introduction to R for Business Intelligence
- Jay Gendron
- 222字
- 2021-08-20 10:34:35
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: "You can load the Bike Sharing data file into the R environment by using the read.csv()
function."
A block of code is set as follows:
bike$holiday <- factor(bike$holiday, levels = c(0, 1), labels = c("no", "yes")) bike$workingday <- factor(bike$workingday, levels = c(0, 1), labels = c("no", "yes"))
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
query <- "SELECT * FROM marketing" bike <- sqlQuery(connection, query) close(connection)
Any command-line input or output is written as follows:
[1] TRUE
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "RStudio will automatically create a ui.R
and server.R
file, if you create a new project and choose New Directory and Shiny Web Application as the type."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- Hands-On Intelligent Agents with OpenAI Gym
- 中文版Photoshop CS5數碼照片處理完全自學一本通
- 極簡AI入門:一本書讀懂人工智能思維與應用
- Prometheus監控實戰
- 網站入侵與腳本攻防修煉
- Azure PowerShell Quick Start Guide
- Salesforce Advanced Administrator Certification Guide
- 基于ARM9的小型機器人制作
- 中國戰略性新興產業研究與發展·數控系統
- Deep Learning Essentials
- Microsoft System Center Data Protection Manager Cookbook
- 從機器學習到無人駕駛
- 自動化生產線組建與調試(第2版):以亞龍YL-335B為例(三菱PLC版本)
- SQL Server 2017 Machine Learning Services with R
- C++面向對象程序設計