Conventions used
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. For example: "The code for this recipe can be found in Ch05/Ch05-1-qc-data.ipynb."
A block of code is set as follows:
import numpy as np
import pandas as pd
vdata = pd.read_csv(
"2021VAERSDATA.csv.gz",
encoding="iso-8859-1"
)
vdata.info(memory_usage="deep") Any command-line input or output is written as follows:
conda create -n ch04-data-science --clone bioinformatics_base conda activate ch04-data-science
Bold: Indicates a new term, an important word, or words that you see on the screen. For instance, words in menus or dialog boxes appear in the text like this. For example: “Click on Sequence Quality Histograms.”
Tips or important notes
Appear like this.