In this section, we are going to explore each variable separately. We are going to summarize the data for each feature and analyze the pattern present in it. Univariate analysis is an analysis using individual features. We will also perform a bivariate analysis later in this section. Univariate analysis Now, let us do a univariate […]
In this section, we will derive the summary statistics for numerical columns. Before generating summary statistics, we will identify the categorical columns and numerical columns in the dataset. Then, we will calculate the summary statistics for all numerical columns. We will also calculate the mean value of each numerical column for the target class. Summary […]
Finally, you deploy your model into production and monitor for continuous improvement using ML Operations (MLOps). MLOps aims to streamline the process of taking ML models to production and maintaining and monitoring them. In this book, we will focus on data labeling. In a real-world project, the datasets that sources provide us with for analytics […]
Controlling the state of a frontend application is one of the biggest challenges for a developer, as by nature, the interface is dynamic and needs to react to various user actions. Angular, with its stacks included philosophy, already had tools suitable for this task, and we studied in Chapters 5, Angular Services and the Singleton […]
The main intention behind the new HTML template flow control syntax was to have a new basis for building new possibilities in the framework’s templates. The first new feature made possible by the syntax is the defer instruction, with which it is possible to lazy load components directly from the HTML template. We learned in […]
With the Docker image we created, we can run our project on any cloud provider that offers container services. However, there are other ways to deploy our Angular project. One of these alternatives is Azure Static Web Apps, a service that specializes in web page design and allows automatic integration with GitHub. Let’s see it […]
After finishing the task of deploying our backend, we need to change our frontend project to make requests to our cloud infrastructure. But here, a problem arises. We want to access our published backend when we are in production, but the team needs to continue accessing the API locally to develop new features in a […]