- Mastering Predictive Analytics with R(Second Edition)
- James D. Miller Rui Miguel Forte
- 207字
- 2021-07-02 20:25:13
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: "The \Drupal\Core\Url
class provides static methods to generate an instance of itself, such as ::fromRoute()
."
A block of code is set as follows:
/** * {@inheritdoc} */ public function alterRoutes(RouteCollection $collection) { if ($route = $collection->get('mymodule.mypage)) { $route->setPath('/my-page'); } }
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
/**
* {@inheritdoc}
*/
public function alterRoutes(RouteCollection $collection) {
if ($route = $collection->get('mymodule.mypage)) {
$route->setPath('/my-page');
}
}
Any command-line input or output is written as follows:
$ php core/scripts/run-tests.sh PHPUnit
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: "Clicking the Next button moves you to the next screen."
- Bootstrap Site Blueprints Volume II
- SpringMVC+MyBatis快速開發與項目實戰
- Web Development with Django Cookbook
- Mastering Articulate Storyline
- Python 3網絡爬蟲實戰
- 機械工程師Python編程:入門、實戰與進階
- 用Python實現深度學習框架
- Terraform:多云、混合云環境下實現基礎設施即代碼(第2版)
- Tableau Desktop可視化高級應用
- Java EE Web應用開發基礎
- HTML5 Canvas核心技術:圖形、動畫與游戲開發
- C語言王者歸來
- The Applied Data Science Workshop
- HTML5 and CSS3:Building Responsive Websites
- PHP程序設計經典300例