-
Book Overview & Buying
-
Table Of Contents
Practical Data Analysis
By :
In this book, you will find a number of styles of text 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: "In this case, we will use the integrate method of the SciPy module to solve the ODE."
A block of code is set as follows:
beta = 0.003
gamma = 0.1
sigma = 0.1
def SIRS_model(X, t=0):
r = scipy.array([- beta*X[0]*X[1] + sigma*X[2]
, beta*X[0]*X[1] - gamma*X[1]
, gamma*X[1] ] –sigma*X[2])
return rWhen we wish to draw your attention to a particular part of a code block, the relevant lines or items are highlighted as follows:
[[215 10 0] [153 72 0] [ 54 171 0] [ 2 223 0] [ 0 225 0] [ 0 178 47] [ 0 72 153] [ 0 6 219] [ 0 0 225] [ 47 0 178] [153 0 72] [219 0 6] [225 0 0]]
Any command-line input or output is written as follows:
db.runCommand( { count: TweetWords })
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: "Next, as we can see in the following screenshot, we will click on the Map Reduce option."
Warnings or important notes appear in a box like this.
Tips and tricks appear like this.
Change the font size
Change margin width
Change background colour