End to End Project Multiple Disease Detection using ML
Naveen
- 1
Project 1: Heart Disease Detection Machine Learning is used across numerous spheres around the world. The healthcare industry is no exception. Machine Learning can play an essential part in predicting presence/ absence of Locomotor diseases, Heart conditions and further. similar information, if predicted well in advance, can give important perceptivity to doctors who can also…
Read MoreArrays Functions and Functional Programming in Python
Naveen
- 2
This post is dedicated to some of the commonly used numpy function to do with arrays in python. 1 – Remove Duplicate from arrays using numpy 2 – Concatenate two arrays using numpy 3 – Get product of one/two arrays using numpy 4 – Basic maths function of Numpy Functional Programming Functional programming is a…
Read MoreArray Methods in Python
Naveen
- 0
Arrays are used to store multiple values in one single variable. Array can be handled in Python by a module named array. Type codes for different data types: These codes are used while creating an array. 1 – Creating an Array Array(data_type, value_list) 2 – Adding Element to Array Insert() is used to insert one…
Read MoreK-nearest Neighbor for Machine Learning
Naveen
- 0
Analogy behind KNN: tell me about your friend (who your neighbors are) and I will tell you who you are. Algorithms Common distance function measure used for continuous variables. KNN Working The k-NN working can be explained on the basis of the below algorithm: Step-1: select the number of K of the neighbors Step-2: Calculate…
Read MoreDecision Tree for Machine Learning
Naveen
- 2
Tree based algorithms are a popular family of related non-parametric and supervised methods for both classification and regression. The decision tree looks like a upside-down tree with a decision rule at the root, from which subsequent decision rules spread out below. Sometimes decision trees are also referred to as CART, which is short for classification…
Read MoreEnd to End Project Laptop Price Prediction using Machine Learning
Naveen
- 0
Machine learning relies on AI to predict the future based on past data. If you’re a data science enthusiast or practitioner, this article will help you build your own end-to-end machine learning project from scratch. In order for a machine-learning project to be successful, there are several steps that should be followed. These steps vary…
Read MoreLogistic Regression for Machine Learning
Naveen
- 0
Logistic Regression is one of the most used Machine learning algorithms among industries and academia. It is a supervised learning algorithm used for classification where the target variable should be categorical. Why not Linear Regression for classification There are mainly two reasons for not fitting a linear regression on classification tasks: When we fit a…
Read MoreUber Data Analysis Project using Python
Naveen
- 0
Uber is a company based in San Francisco that handles over 118 million users and 5 million drivers, making it the perfect app for you to hire a ride. Additionally, they process an average of 17.4 million trips with over 6 billion rides completed every day. You can download the dataset used in this project…
Read MoreDate-Time Module in Python
Naveen
- 0
The data-time is a built-in module supplies classes for manipulating dates and times. datetime.now use the now() method to access the current date and time. Date class in datetime module We can represent the data object using the data class Syntax to create a data object datetime.date(year, month, day) date.today() it will return the current…
Read MoreSales Analysis Project using Python
Naveen
- 0
In this post, I use Python, Pandas & Matplotlib to analyze and answer business questions about 12 months worth of sales data. The data contains hundreds of thousands of electronics store purchases broken down by month, product type, cost, purchase address, etc. The dataset can be downloaded here. In this analysis, I’m using jupyter notebook. First,…
Read More