- 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."
推薦閱讀
- 流量的秘密:Google Analytics網(wǎng)站分析與優(yōu)化技巧(第2版)
- Apache ZooKeeper Essentials
- C程序設(shè)計(jì)簡(jiǎn)明教程(第二版)
- Python高級(jí)機(jī)器學(xué)習(xí)
- 零基礎(chǔ)輕松學(xué)SQL Server 2016
- 深入理解Android:Wi-Fi、NFC和GPS卷
- Swift Playgrounds少兒趣編程
- 新一代SDN:VMware NSX 網(wǎng)絡(luò)原理與實(shí)踐
- 從零開(kāi)始:UI圖標(biāo)設(shè)計(jì)與制作(第3版)
- C++ Application Development with Code:Blocks
- Data Science Algorithms in a Week
- Deep Learning for Natural Language Processing
- AngularJS UI Development
- 創(chuàng)新工場(chǎng)講AI課:從知識(shí)到實(shí)踐
- Jakarta EE Cookbook