-
Support
-
April 2026 M T W T F S S 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 -
-
Latest Posts
-
-


Business Central – Go to Next or Previous Page
Posted in Business Central, Microsoft Dynamics 365
Comments Off on Business Central – Go to Next or Previous Page
Business Central – Filter Information
Posted in Business Central, Microsoft Dynamics 365
Tagged business, central, filter, filtering
Comments Off on Business Central – Filter Information
Business Central – Sort Information
Posted in Business Central, Microsoft Dynamics 365
Tagged business, central, information, sort
Comments Off on Business Central – Sort Information
Business Central – Search and Select Information
Posted in Business Central, Microsoft Dynamics 365
Tagged and, business, central, search, select
Comments Off on Business Central – Search and Select Information
Business Central – My Settings
Posted in Business Central, Microsoft Dynamics 365
Tagged business, central, my, settings
Comments Off on Business Central – My Settings
Business Central – Search
Posted in Business Central, Microsoft Dynamics 365
Tagged business, central, search
Comments Off on Business Central – Search
Business Central – User Interface
Posted in Business Central, Microsoft Dynamics 365
Tagged business, central, interface, user
Comments Off on Business Central – User Interface
Basics of Machine Learning
In this article we will go through the basics of ML terminologies which will be useful for Data Processing and Data Visualization.

Mean
It is the average of all the values.
| Mean = Sum of all observations / Number of observations |
For example:
Mean = 62800 / 11
= $ 5709.09

Median
It is the numerical middle value of the sorted observations with equal number if observations on both sides.
For example, if we plot the same data as above in ascending order in straight line, you will see that there are equal number of observations on both the sides of “5800”. Hence this is the median value of this sample set.

In case you are wondering about its significance, well, then this helps us understand on which side majority of the observations are tilted. So, in case of data clean-up process if some observations have missing values, we can either replace them with mean or median values.
Mode
It is the value that appears most often in a set of data. In our above sample data, the value “6400” occurs 3 times, which is higher that the occurrences of all the other values. So the mode of this set of observations is “6400”.

This can also be used for replacing missing values in a dataset.
Range
It is the difference of highest and lowest values in a sample of observations. So as per the our sample dataset:
Range = 7000 – 4000
= 3000
This helps us understand how widely the values are spread in a given set of observations.
Probability
This is one of the most important term in machine learning and we all have heard this term in one way or another.
Probability is a numerical way of describing how likely something is going to happen.
Probability is derived from a Sample Space (S). Sample Space is set of possible outcomes that might be observed for an event.
If all this sound Greek to you then let us take a simple example of dice. So when we throw a dice, what are the possible outcome? The only possible outcome is one of the following: 1,2,3,4,5 or 6. So the sample space for dice is the following:

| Dice Sample Space (S) = {1,2,3,4,5,6} |
Now if we want to know what is the Probability of 3, i.e. if we roll the dice, what is the likelihood of getting a 3?
It is 1 out of 6.

| P(A) = 1/6 = 0.1667 OR 16.67% |
Similarly, what is the probability of getting an even number?

| P(A) = 3/6 = 0.5 OR 50% |
Does it make sense now? This is one of the most important topic and many machine learning algorithms such as Naive Bayes, Logistic Regression, etc. are based on fundamental principles of probability.
Stay tuned for more!
Data Types in Machine Learning
In our previous article we looked into the definition of machine learning, how machine learns, how machine learning is different than traditional rule based systems and various machine learning categories, i.e. Supervised, Unsupervised and Reinforcement Learning.
We also know that historical data is crucial for any machine learning algorithms we use, but how to read the data and how to interpret it, so that we can make effective use of it in our algorithm.
Remember garbage in is garbage out.
So, let us understand the data with an example. Let’s say following is the data from a bank which that wants to create an algorithm to determine whether a customer loan should be approved or not.

Now, let’s look at what kind of data we are dealing with here.
In any data set there are three main important factors that we need to understand, before we start working on solving the problem using Machine Learning.:
Type of Variables
So, in this example, we are trying to determine whether the loan application of the customer will be approved or not, in other words the approval is based on the events in the past, because we want our Machine Learning algorithm to predict similar results.

Data Type
At a high level we can safely assume that the data that has been provided to us has some variables as Character/String and some variables as Numeric values. There can be more type or subtype within them, such as integer, float, etc., but as long as we understand these two broad types we are good.
Now, what would happen to the data type, if the bank says that we are going to treat all the customers same, if they have three or more dependents on them. In that case the values above three or the number of dependents does not have any impact and we should change it to “3+”. In such a scenario the “Dependent” variable will become a string type variable.
So, you should pay very close attention to such details coming from the data provider to avoid any data errors in the data processing stage.

Category
Category of the data is a very important aspect. Now, if you look closely some variables contain options such as male, female; yes, no; etc. Such variables are called Categorical variables. Whereas other variables are Continuous variables, where the values can have any possible range.

These are small things but very important for reading and processing the data.
Stay tuned for more articles!