Menu

IIT Certification 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

komarapu Chinnarao

DATA SCIENCE ENGINEER

Skills Acquired at Skill-Lync :

  • PYTHON
  • DATA SCIENCE

Introduction

Hi this is Komarapu chinnarao I had good experience in mechanical engineering department like projects...but now I want change my mind to start to know software courses..and i have Good leadership, communication, problem solving, programming and interpersonal skills. Ability to deal with people diplomatically, willingness to learn, Team facilitator.

23 Projects

Project 1 - English Dictionary App & Library Book Management System

Objective:

1A.English Dictionary App #creating menu example#GUI based dictionaryfrom tkinter import *window = Tk()window.title("Dictionary App")window.geometry("600x400+50+50")f = open('words.txt','w')coll_words = {}def addNewWord(): f = open('words.txt','w') word = input('Enter a word : ') meaning = input('Enter its meaning : ')…

calendar

29 Jul 2022 01:10 PM IST

    Read more

    Project 2 - EDA on Vehicle Insurance Customer Data

    Objective:

    1.ANS # to avoid warnings from pythonimport warningswarnings.filterwarnings('ignore') import pandas as pdcustomer_detail_df=pd.read_csv(r'C:\Users\Chinna\Downloads\customer_details.csv') # ' .\ ' represent the current directorycustomer_detail_dfcustomer_detail_df.columns=["customer_id","Gender","age","driving licence present","region…

    calendar

    29 Jul 2022 03:36 PM IST

      Read more

      Project 1

      Objective:

      in this project i had learn how to create schema and how to import file  .csv formate from existing files and how to execute no.of conditions and create ecomerce platform.. Business model Customer to Customer (C2C) allows customers to do business with each other. This model is growing fast with e-commerce platforms…

      calendar

      14 Aug 2022 05:50 AM IST

        Read more

        Project 2

        Objective:

        in this project i had learned how to use MsExcel and jupitor Notebook,and mysql workbench then execute all statements     Q5.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. Ans:-(Same procedure for all other columns) Q13.Import the created…

        calendar

        16 Aug 2022 09:51 AM IST

          Read more

          Project 1 - Analyzing the Education trends in Tamilnadu

          Objective:

          Business RequirementsTitle: Women in STEM Fields.In this project i had learned and solve these problems like as below...-A pie graph of women inBiological ScientistsChemists & Materials ScientistsComputer & Mathematical OccupationsEngineers & Architects-The trend of percent women graduating in Computer science…

          calendar

          28 Aug 2022 09:14 AM IST

            Read more

            Project 2 - Gender Bias in Science and Technical field

            Objective:

            1. literacy rates in Tamilnadu. It is distributed according to the cities and their ranks. It contains the population, as per the gender. 2.This dashboard gives us the insight about the female population when compared to the total, and it addresses 3. the state is on literacy wise. 4.It shows us the status of each city…

            calendar

            28 Aug 2022 02:08 PM IST

              Read more

              Project 1

              Objective:

              project 1 using these models machine learning models Logistic Regression, K-Nearest Neighbours Classifier, Support Vector machine, Decision Tree Classifier, Random Forest Classifier on the given dataset.

              calendar

              20 Sep 2022 09:52 AM IST

                Read more

                Project 2

                Objective:

                 Apply Principal component analysis, K-Means Clustering & Hierarchical Clustering.

                calendar

                23 Sep 2022 09:27 AM IST

                  Read more

                  Project 1 - Data Cleaning and Transformation using Pivot table and Charts for the Report on requirement of Team Hiring

                  Objective:

                  ABC NewTab and Add formating from the customize ribbens   Clean the Data with respect to date by proper date formatting and change values of 2003 to 2019, 2004 to 2020 and 2005 to 2021.    Make summary of Products Sales by providing Total Sum of Sales Average of Sales Standard Deviation of Sales Variance of Sales Maximum…

                  calendar

                  06 Oct 2022 11:07 AM IST

                    Read more

                    Project 2 - Create a report using PowerQuery, Macro VBA, List Functions and Data Validation functions for Data Reporting of Supply Chain Management companies

                    Objective:

                    Public Sub Dataintopdf()'Create and Assian VariablesDim SaveLocation As StringDim SheetArray As StringSaveLocation = "C:\Users\Chinna\OneDrive\Desktop"SheetArray = Array("Copy Data up to 2022 cells", "Charts", "List Functions")'Select Specific Sheets From WorkBook,The Save All As PdfSheets(SheetArray).Select'ActiveSheet.Export…

                    calendar

                    07 Oct 2022 06:02 AM 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 Variance : `sigma``σ^2`= `∑``(``Xi`-`μx`)``^2``/``N`   (population)` Sample : `S^2`= `∑``(``Xi`-`μx`)``^2``/``N-1`   (sample)` So When We Use N insted of N-1, We have an error…

                      calendar

                      08 Oct 2022 11:13 AM IST

                        Read more

                        Supervised Learning - Prediction Week 3 Challenge

                        Objective:

                        1.Perform Gradient Descent in Python with any loss function Gradient Descent is an iterative algorithm that is used to minimize a function by finding the optimal parameters. Gradient Descent can be applied to any dimension function i.e. 1-D, 2-D, 3-D. In this article, we will be working on finding global minima for…

                        calendar

                        20 Oct 2022 02:51 PM 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?   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 simple mean is sufficient enough for having an idea about the data by computing with it's formula (Sum…

                          calendar

                          20 Oct 2022 02:52 PM IST

                            Read more

                            Supervised Learning - Classification Week 7 Challenge

                            Objective:

                            1.Pros and cons of SVM * Brief explaination on Support Vector Machine (SVM). Pros and cons. a) Support Vector Machine (SVM) The SVM algorithm was invented by Vladimir N. Vapnik and Alexey Ya. Chervonenkis in 1963. SVMs comes under the supervised machine learning models and it can be applied to classification (SVC —…

                            calendar

                            23 Oct 2022 01:30 AM IST

                              Read more

                              Supervised Learning - Classification Week 8 Challenge

                              Objective:

                              1.What are the pros and cons of knn Pros: K-NN is pretty intuitive and simple: K-NN algorithm is very simple to understand and equally easy to implement. To classify the new data point K-NN algorithm reads through whole dataset to find out K nearest neighbors. K-NN has no assumptions: K-NN is a non-parametric algorithm…

                              calendar

                              23 Oct 2022 04:10 AM 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. 2.What is deep learning? Deep learning is a type of machine learning, which is a subset of artificial intelligence.deep learning is…

                                calendar

                                23 Oct 2022 05:19 AM IST

                                  Read more

                                  Unsupervised Learning - Kmeans Week 11 Challenge

                                  Objective:

                                  1.How does similarity is calculated if data is categorical in nature Brief introduction to K-means algorithm and similarity feature determination a) K-means algorithm and similarity feature determination K-means algorithm is a simple iterative machine learning algorithm used in unsupervised learning. The basic idea behind…

                                  calendar

                                  23 Oct 2022 05:52 AM IST

                                    Read more

                                    Project 1

                                    Objective:

                                    About the Dataset: This is a raw dataset about cars in 1985. This data set consists of three types of entities:(a) the specification of an auto in terms of various characteristics,(b) its assigned insurance risk rating,(c) its normalized losses in use as compared to other cars. The second rating corresponds to the degree…

                                    calendar

                                    24 Oct 2022 03:02 AM IST

                                      Read more

                                      Project 2

                                      Objective:

                                      There are two major types of clustering in Unsupervised Machine Learning. These are: KMeans Clustering. Hierarchichal Clustering. We are going to perform both the algorithms on the dataset and find out the differences between the results. Overview: What is KMeans Clustering? Performing Kmeans Clustering. What is Hierarchical…

                                      calendar

                                      24 Oct 2022 05:45 AM IST

                                      • CSS
                                      • HTML
                                      Read more

                                      Project 1

                                      Objective:

                                      1. Explain the data. Check It is supervised or Unsupervised. Demonstrate? it is the supervised data because it have contain Labeled data. Supervised and unsupervised learning have one key difference. Supervised learning uses labeled datasets, whereas unsupervised learning uses unlabeled datasets. By “labeled”…

                                      calendar

                                      21 Jan 2023 02:00 PM IST

                                        Read more

                                        Project 2

                                        Objective:

                                        1.Display the data of white wine and red wine 2.Get the size of both white wine and red wine. 3.Get the number of null in both type of wines 4.Check for duplicates and remove them in both type of wine data 5.Get the number of uniques values in all Feature and print them 6.Print the mean density of both the sets 7.Combine…

                                        calendar

                                        25 Jan 2023 09:23 AM IST

                                          Read more

                                          Project 1 - COVID-19 Vaccinations Trend Analysis

                                          Objective:

                                          Project 1 - COVID-19 Vaccinations Trend Analysis The Dataset is given below. Kindly use the same. Deliverables of this project: Detailed Documentations (attach a word file and also paste in the text box) Power BI Report / .PBIX file Present the project like a Case Study using Power Point The Detailed Documentation of the…

                                          calendar

                                          06 Feb 2023 06:24 AM IST

                                            Read more

                                            Project 2 - Supply and Demand Gap Analysis

                                            Objective:

                                            Project 2 - Supply and Demand Gap Analysis Use any Dataset of your own (download from kaggle) Supply and Demand gap analyses are widely used by companies as strategic management decision tools. This project is to identify the gap between demand and supply so that organization can take action to minimize those gaps. The…

                                            calendar

                                            06 Feb 2023 08:08 AM IST

                                              Read more
                                              Showing 1 of 23 projects

                                              11 Course Certificates

                                              certificate

                                              Core and Advanced Python Programming

                                              CertificateIcon
                                              Certificate UID: npyo1sz3l62uft07
                                              View Certificate
                                              certificate

                                              SQL for Data Science

                                              CertificateIcon
                                              Certificate UID: 3n01hqu6ed4zyow9
                                              View Certificate
                                              certificate

                                              Data Analysis and Visualization with Tableau

                                              CertificateIcon
                                              Certificate UID: eukho95vrlfb17x2
                                              View Certificate
                                              certificate

                                              Introduction to Machine Learning Algorithms and their Implementation in Python

                                              CertificateIcon
                                              Certificate UID: 5pol9dq0xw6ehfbz
                                              View Certificate
                                              certificate

                                              Data Analysis and Visualization using Excel

                                              CertificateIcon
                                              Certificate UID: yqv6t2mzd5e4fsra
                                              View Certificate
                                              certificate

                                              Machine Learning Fundamentals In Depth

                                              CertificateIcon
                                              Certificate UID: qe8y390sz6duca5x
                                              View Certificate
                                              certificate

                                              Verbal Ability

                                              CertificateIcon
                                              Certificate UID: 1aq7lmxe4ybgjki9
                                              View Certificate
                                              certificate

                                              Mock Interview For Career Services

                                              CertificateIcon
                                              Certificate UID: vnfatplw9r5uqmgb
                                              View Certificate
                                              certificate

                                              Effective Dashboards using Power BI

                                              CertificateIcon
                                              Certificate UID: okl6jraspecu5n27
                                              View Certificate
                                              certificate

                                              Aptitude

                                              CertificateIcon
                                              Certificate UID: nea7pj2uox5y3if4
                                              View Certificate
                                              certificate

                                              HR Prep

                                              CertificateIcon
                                              Certificate UID: n9rj83ewaxlcgkft
                                              View Certificate
                                              Showing 1 of 11 certificates

                                              Academic Qualification

                                              M.Tech

                                              JNTU Kakinada

                                              12 Sep 2018 - 22 Dec 2020

                                              B.Tech

                                              Krishna University

                                              01 Sep 2010 - 11 May 2014

                                              12th

                                              Narayana Junior College (Saraswathi Bhavan)

                                              01 Jun 2009 - 01 Apr 2010

                                              10th

                                              Govt High School, Amadalavalasa

                                              01 Jun 2007 - 15 Apr 2008

                                              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

                                              22 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

                                              0 Hours of Content

                                              coursecard
                                              Recently launched

                                              7 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