Menu

Executive Programs

Workshops

Projects

Blogs

Careers

Student Reviews



More

Academic Training

Informative Articles

Find Jobs

We are Hiring!


All Courses

Choose a category

Loading...

All Courses

All Courses

logo

Ashfaq Ali

linkedin.com/in/mohammed-ashfaq-ali-1b0a7519b

Skills Acquired at Skill-Lync :

  • PYTHON
  • DATA SCIENCE

Introduction

Hi I'm @ashfaq I’m currently working on Data Engineering projects. I’m interested in Data Science, Machine Learning, and Artificial Intelligence. My skills are in Python, Spark, Azure Synapse analytics, ADF, Hive, and Power BI. I’m looking to collaborate on all topics related to Public Services, National defense services, Data Science, and Artificial Intelligence.

23 Projects

Solving second order ODEs

Objective:

Code: clear allclose allclc b = 0.05;g = 9.81;l = 1;m = 0.1; % initial conditiontheta_0 =[0;5];% time pointst_span = linspace(0,10,250); % solve ODE[t, results] = ode45(@(t,theta) ode_func(t, theta, b, g, l, m), t_span, theta_0); plot(t, results(:,1))hold on plot(t, results(:,2))ylabel('plot')xlabel('time')title('for simple…

calendar

27 Apr 2022 08:38 PM IST

    Read more

    Genetic Algorithm

    Objective:

    A genetic algorithm is a search-based optimization technique based on the principles of genetics and natural selection. It is frequently used to find optimal or near-optimal solutions. we can apply the genetic algorithm that is not well suited for the standard optimization algorithm. MATLAB ga calculates the minimum value…

    calendar

    27 Apr 2022 08:37 PM IST

    • MATLAB
    Read more

    Project 1 - Parsing NASA thermodynamic data

    Objective:

    Specific heat: %cp=(a1+a2T+a3T^2+a4T^3+a5T^4)*R %function for specific heat function Cp = specificheat(a1,a2,a3,a4,a5,a8,a9,a10,a11,a12,T,local_mid_temp,R)%comparing with global Terature if T> local_mid_temp% for first a1 to a7 seven coeffCp = R*(a1 + a2*(T) + a3*((T).^2) + a4*((T).^3) + a5*((T).^4)); else% for last…

    calendar

    25 Oct 2021 04:48 PM IST

      Read more

      Air standard Cycle

      Objective:

      write code that can solve an otto cycle and make plots for it.   """otto cycle simulator""" import mathimport matplotlib.pyplot as plt #input p1= 101325t1= 500gamma=1.4t3=2300#write code that can solve an otto cycle and make plots for it. #geometric parametresbore=0.1stroke=0.1con_rod=0.15cr=12 #volume coputation…

      calendar

      27 Apr 2022 08:39 PM IST

        Read more

        Solving second order ODEs

        Objective:

        import numpy as npfrom scipy.integrate import odeintimport matplotlib.pyplot as pltimport math #function that return dz/dtdef model(theta,t,b,g,l,m): theta1=theta[0]theta2=theta[1]dtheta1_dt= theta2dtheta2_dt= -(b/m)*theta2-(g/l)*math.sin(theta1)dtheta_dt= [dtheta1_dt, dtheta2_dt]return dtheta_dt b=0.02g=9.81l=1m=0.1 #initial…

        calendar

        27 Apr 2022 08:38 PM IST

          Read more

          Restaurant Management system

          Objective:

                from tkinter import*import randomimport time root = Tk()root.geometry("1600x700+0+0")root.title("Restaurant Management System") Tops = Frame(root,bg="white",width = 1600,height=50,relief=SUNKEN)Tops.pack(side=TOP) f1 = Frame(root,width = 900,height=700,relief=SUNKEN)f1.pack(side=LEFT) f2 = Frame(root…

          calendar

          27 Apr 2022 12:01 PM IST

            Read more

            Set countdown Timer

            Objective:

            import timefrom tkinter import *from tkinter import messagebox# creating Tk windowroot = Tk()# setting geometry of tk windowroot.geometry("300x250")# Using title() to display a message in# the dialogue box of the message in the# title bar.root.title("Time Counter")# Declaration of variableshour=StringVar()minute=StringVar()second=StringVar()#…

            calendar

            27 Apr 2022 12:06 PM IST

              Read more

              QR code generator

              Objective:

              import qrcodefrom tkinter import *from tkinter import messagebox #Creating the window wn = Tk()wn.title('DataFlair QR Code Generator')wn.geometry('700x700')wn.config(bg='black') #Function to generate the QR code and save it def generateCode():#Creating a QRCode object of the size specified by the userqr = qrcode.QRCode(version…

              calendar

              27 Apr 2022 04:25 PM IST

                Read more

                Project 1 - English Dictionary App & Library Book Management System

                Objective:

                1A: English Dictionary App import json print("Welcome to Dictionary app")print("Please select your choice")print("1. Add a word")print("2. Find the meaning")print("3. Update the word")print("4. Exit") f = open('word.txt','w')coll_words = {}json.dump(coll_words,f)f.close() while True: n=int(input('Enter the choice:'))…

                calendar

                30 Apr 2022 09:15 AM IST

                  Read more

                  C2C E-Commerce User’s Behaviour Analysis (Project-1 )

                  Objective:

                  Create new schema as ecommerce   2.Import .csv file users_data into MySQL   -- 3.Run SQL command to see the structure of tableUSE ecommerce;DESC users_data; -- 4.Run SQL command to select first 100 rows of the databaseUSE ecommerce;SELECT * FROM users_data LIMIT 100; -- 5.How many distinct values exist in table…

                  calendar

                  24 May 2022 05:18 PM IST

                    Read more

                    Basics of Probability and Statistics Week 1 Challenge

                    Objective:

                    1. Why there is a difference in the formula of variance for population and sample The main difference between population variance and sample variance relates to the calculation of variance. Variance is calculated in five steps. First mean is calculated, then we calculate deviations from the mean, and thirdly the deviations…

                    calendar

                    16 Jun 2022 11:34 AM IST

                      Read more

                      Basics of ML & AL Week 2 Challenge

                      Objective:

                      1)Calculate all 4 business moments using pen and paper for the below data set?   sol: See the Document in pdf     2)What is the significance of expected value when simple mean (Sum of all observations/number of observations) is already in place It is true that a simple mean is sufficient enough for having…

                      calendar

                      19 Jun 2022 09:11 AM IST

                        Read more

                        Supervised Learning - Prediction Week 3 Challenge

                        Objective:

                        1. Perform Gradient Descent in Python with any loss function import numpy as np def gradient_descent(x,y): m_curr = b_curr = 0 iterations=1000 n=len(x) learning_rate=0.001 for i in range(iterations): y_p = m_curr * x + b_curr cost= (1/n) * sum([val**2 for val in (y - y_p)]) md = -(2/n) * sum(x * (y - y_p)) bd = -(2/n)…

                        calendar

                        22 Jun 2022 07:32 AM IST

                          Read more

                          Titanic data analysis using logistic regression

                          Objective:

                          import pandas as pdimport numpy as npimport seaborn as snsimport matplotlib.pyplot as pltimport math% matplotlib inline   titanic_data1=pd.read_csv("train.csv")titanic_data1.head(12) print('No of passengers in original data:' + str(len(titanic_data1.index)))   Analyzing the data : sns.countplot(x="Survived",data=titanic_data1)…

                          calendar

                          04 Jul 2022 12:31 PM IST

                            Read more

                            Random Forest Classification

                            Objective:

                            import pandas as pdimport numpy as npimport seaborn as sns   Loading the data set:   df=sns.load_dataset("penguins")df.head()   df.shape df.info()   df.isnull().sum() Drop Null Values: df.dropna(inplace=True) df.isnull().sum() Feature Engineering: One hot encoding transforming categorical data into…

                            calendar

                            04 Jul 2022 12:31 PM IST

                              Read more

                              Supervised Learning - Classification Week 7 Challenge

                              Objective:

                              Pros and cons of SVM “Support Vector Machine” (SVM) is a supervised machine learning algorithm that can be used for both classification or regression challenges. However,  it is mostly used in classification problems. In the SVM algorithm, we plot each data item as a point in n-dimensional…

                              calendar

                              06 Jul 2022 12:13 PM IST

                                Read more

                                KNN (Breast Cancer) Prediction

                                Objective:

                                import pandas as pdimport numpy as npimport seaborn as snsimport matplotlib.pyplot as pltget_ipython().run_line_magic('matplotlib','inline')   # Get the data from sklearn.datasets import load_breast_cancer cancer=load_breast_cancer() # Data set presenting in dictionary formcancer.keys() dict_keys(['data', 'target',…

                                calendar

                                07 Jul 2022 08:47 PM IST

                                  Read more

                                  Supervised Learning - Classification Week 8 Challenge

                                  Objective:

                                  1. Apply knn to the “Surface defects in stainless steel plates” and identify the differences See the document below   2. What are the pros and cons of knn     K- Nearest Neighbors or also known as K-NN belong to the family of supervised machine learning algorithms which means we use labeled (Target…

                                  calendar

                                  08 Jul 2022 02:20 PM IST

                                    Read more

                                    Supervised Learning - Classification Week 9 Challenge

                                    Objective:

                                    1. What is a Neural Network? Neural networks are a class of machine learning algorithms used to model complex patterns in datasets using multiple hidden layers and non-linear activation functions. Neural networks, also known as artificial neural networks (ANNs) or simulated neural networks (SNNs), are a subset…

                                    calendar

                                    09 Jul 2022 08:17 AM IST

                                    Read more

                                    Project 1

                                    Objective:

                                    -- Data cleaning on Automobile 1985 dataset and perform descriptive analytics I have worked on the dataset for conversion of raw data into a form that will make it easy to understand & interpret, ie., rearranging, ordering, and manipulating data to provide insightful information about the provided data. The dataset…

                                    calendar

                                    15 Jul 2022 01:09 PM IST

                                      Read more

                                      Unsupervised Learning - Kmeans Week 11 Challenge

                                      Objective:

                                      1. How does similarity is calculated if data is categorical in nature Categorical data are converted to numerical data using label encoding or one hot encoding then when comparing two records if the value for the categorical data is the same in both records then the similarity measure is zero if the values are…

                                      calendar

                                      17 Jul 2022 11:44 AM IST

                                        Read more

                                        Project 2 - EDA on Vehicle Insurance Customer Data

                                        Objective:

                                        A company has customer data that contains 8 columns of customer details and another table having name customer_policy data contains the policy details of the customer.  The company intends to offer some discount in premium for certain customers. To do that they ask their Data scientist team to get some information. Hence,…

                                        calendar

                                        20 Jul 2022 08:29 AM IST

                                          Read more

                                          Project 2

                                          Objective:

                                            5. Import first 1500 rows of tables (College_A_HS, College_A_SE, College_A_SJ, College_B_HS, College_B_SE, College_B_SJ) into MS Excel.    

                                          calendar

                                          09 Aug 2022 09:58 AM IST

                                            Read more
                                            Showing 1 of 23 projects

                                            4 Course Certificates

                                            certificate

                                            MATLAB for Mechanical Engineers

                                            CertificateIcon
                                            Certificate UID: lg2cs3jev750u8r6
                                            View Certificate
                                            certificate

                                            Core and Advanced Python Programming

                                            CertificateIcon
                                            Certificate UID: rga56c2bojs7hlfq
                                            View Certificate
                                            certificate

                                            SQL for Data Science

                                            CertificateIcon
                                            Certificate UID: zu38qry7i10ebjno
                                            View Certificate
                                            certificate

                                            Machine Learning Fundamentals In Depth

                                            CertificateIcon
                                            Certificate UID: mq51aobc6utyhvli
                                            View Certificate
                                            Showing 1 of 4 certificates

                                            3 Workshop Certificates

                                            certificate

                                            An overview of Embedded Systems & Applications

                                            CertificateIcon
                                            Certificate UID: 5z8c3b7k4q
                                            View Certificate
                                            certificate

                                            An overview of Embedded Systems & Applications

                                            CertificateIcon
                                            Certificate UID: rql0vwaxou
                                            View Certificate
                                            certificate

                                            Introduction to Robotics Technology and its Features

                                            CertificateIcon
                                            Certificate UID: rz3amble54
                                            View Certificate
                                            Showing 1 of 3 certificates

                                            Academic Qualification

                                            B.Tech

                                            Raghu Engineering College (Autonomous)

                                            01 Sep 2014 - 26 May 2018

                                            12th

                                            Narayana Junior College

                                            12 Jun 2012 - 01 Apr 2014

                                            10th

                                            Amar Concept School

                                            30 May 2011 - 30 Apr 2012

                                            Schedule a counselling session

                                            Please enter your name
                                            Please enter a valid email
                                            Please enter a valid number

                                            Here are the courses that I have enrolled

                                            coursecard
                                            4.8

                                            30 Hours of Content

                                            coursecard
                                            4.3

                                            22 Hours of Content

                                            coursecard
                                            Recently launched

                                            24 Hours of Content

                                            coursecard
                                            Recently launched

                                            24 Hours of Content

                                            coursecard
                                            Recently launched

                                            18 Hours of Content

                                            coursecard
                                            Recently launched

                                            21 Hours of Content

                                            coursecard
                                            Recently launched

                                            10 Hours of Content

                                            coursecard
                                            Recently launched

                                            22 Hours of Content

                                            Similar Profiles

                                            Apoorv Ranjan
                                            Apoorv Ranjan

                                            Ladder of success cannot be climbed with hands in pocket.

                                            Pruthvi Jagadeesh GK
                                            Pruthvi Jagadeesh GK

                                            The Future in Motion

                                            Krantiveer .
                                            Krantiveer .

                                            Give more than what you get you will get more than what you gave