Category: Python

Sunday November 10th, 2019

Bubble Sort

Hello, In my previous articles, I wrote about the Insertion and Selection Sort Algorithms. In this article, I will try to make Bubble Sort Algorithm. In the bubble sort, we are finding the bigger item in the array and then change the order, algorithm do these process until the array become orderly. For the give an example, think like that array = [3,1,6,5,7,8,2,4] for the make orderly […]

Thursday November 7th, 2019

Insertion Sort Algorithm

Hello, In my previous article i talked about the selection sort algorithm you can reach by clicking here and in this article i try to make Insertion Sort Algorithm. In the insertion sort algorithm we pass the first element of the array and we think that that data is the smallest in the array. Rest of the data array, we consider that they are orderly and […]

Thursday November 7th, 2019

Selection Sort

Hello, Selection Sort is a sorting algorithm. With Selection Sort, we can sort the array minimum to the maximum or maximum to the minimum. Algorithm, choose the first element of the array as minimum and then in the for loops, we controlled the conditions if there is some minimum value than the or minimum then we change the their places. Algorithm is really simple to implement. Algorithms has complexity […]

Wednesday May 1st, 2019

Decision Tree

Decision Tree is a machine learning algorithm which you can make the classification and raegression. Implementation of this algorithm very easy. In decision tree algorithm, Decision were made by looking at the value which given at the start. The given root separated to the two branches and process goes with these branches. I want to make prediction using by the decision tree algorithm. I have a dataset which […]

Tuesday March 5th, 2019

Machine Learning – Linear Regression

Artificial intelligence is going to be one of the biggest helper for us in the future or now. If you are interesting the Artificial Intelligence, we need the know some knowledges about the AI. To have knowledge about the AI, we have to know some knowledges about the Machine Learning. In this article, I am going to talk about the Linear Regression. Linear Regression Regression […]