Conventions used
There are a number of text conventions used throughout this book.
Code in text
: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "Also create a text variable named recordId
, available for input, to receive the ID of the context case."
A block of code is set as follows:
#train/test split train_data, test_data = np.split(model_data.sample(frac=1, random_state=432), [int(0.8 * len(model_data))]) print(train_data.shape, test_data.shape)
Bold: Indicates a new term, an important word, or words that you see onscreen. For instance, words in menus or dialog boxes appear in bold. Here is an example: "Now go to flows and create a Record-Triggered Flow. Set the object to Case Comment and run the flow after creation, as shown in the following screenshot."
Tips or important notes
Appear like this.