Before starting with data analysis through the build and training of a neural network, we conduct an exploratory analysis to understand how the data is distributed and extract preliminary knowledge.
summary(BreastCancer)
With this command, we will see a brief summary using the summary() function.
In this case, the function was applied to a dataframe and the results are shown in the following screenshot:
The summary() function returns a set of statistics for each variable. In particular, it is ...