- R High Performance Programming
- Aloysius Lim William Tjhi
- 161字
- 2021-08-06 19:17:04
Conventions
In this book, you will find a number of styles of text that distinguish among 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: "To compile the function, we will use the cmpfun()
function in the compiler package."
A block of code is set as follows:
fibonacci_rec <- function(n) { if (n <= 1) { return(n) } return(fibonacci_rec(n - 1) + fibonacci_rec(n - 2)) }
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "Be sure to select the Package authoring installation and Edit the system PATH options in the installation wizard."
推薦閱讀
- HTML5+CSS3+JavaScript從入門到精通:上冊(微課精編版·第2版)
- C程序設計簡明教程(第二版)
- Spring 5.0 By Example
- Xcode 7 Essentials(Second Edition)
- 軟件測試工程師面試秘籍
- 從Java到Web程序設計教程
- NGINX Cookbook
- R數據科學實戰:工具詳解與案例分析
- 軟件測試技術
- 3ds Max 2018從入門到精通
- 從零開始學算法:基于Python
- Learning D3.js 5 Mapping(Second Edition)
- 數據結構與算法詳解
- Python人工智能項目實戰
- Access 2016數據庫應用與開發:實戰從入門到精通(視頻教學版)