How to implement Knn-algorithm without using k-nn function in r

0 votes
Is there a website to which I can refer? Actually, I'm a newbie when it comes to R programming. I'm not sure how to do it without the k-nn function. I just use the knn function to find example code.
Jun 19, 2022 in Data Science by Avinash
• 1,260 points
258 views

1 answer to this question.

0 votes

I created an example that demonstrates the algorithm's operation and how to use it in R. The data for my example is provided here.

students known data.frame(Major = c(rep("Arts",4", "Applied Science", 3), rep("Education",3), rep("Science",6));
The cost of tuition is equal to c(2000,2200,2100,1900,2800,3000,2900, 2500,2700,2600,3100,3200,3150,3000,3175,3300),
Age = c(20,18,22,21,24,23,21,19,19,21,20,18,17,21,24,23), GPA = c(3.55,3.40,3.30,3.50,2.90,3.05,2.50, 3.80,3.45,3.35,3.00,3.50,4.00,3.40,3.30),
students known

# Major Tuition Grade Point Average Age # 1 in the Arts (2000) 3.55 20 # 2 in the Arts (2002) 3.40 18 # 3 Arts 2100 3.30 22 # 4 Arts 1900 2.800 3.50 21 # 5 Applied Science Applied Science 3000 2.90 24 # 6 Applied Science 2900 3.05 23 # 7 Education, 2.50 21 # 8, 2500 3.80 19 # 9 Education 2700 3.45 19 No. 10 Education 2600 3,35 21, Position 11 in the Science 3100 Science, #12, at 3.00, and 3200 Science 3150, 3.50, 18 # 13, 4,00, 17, and 14, Science 3000, 3,40, and 21, respectively, Science 3175 3.45 24 No. 16 Science

Unleash the power of data with our comprehensive Data Science Training.

answered Jun 24, 2022 by Sohail
• 3,040 points

Related Questions In Data Science

0 votes
0 answers

In R, how to get an object's name after it is sent to a function?

I'm trying to find the opposite of ...READ MORE

Jul 5, 2022 in Data Science by avinash
• 1,840 points
165 views
0 votes
0 answers

how to make 2 separate substrings from strsplit in R

When it comes to accessing the elements ...READ MORE

Jun 13, 2022 in Data Science by Avinash
• 1,260 points
152 views
0 votes
1 answer

How to overlay density plots in R?

The second one has 104 usage lines: plot(density(MyData$Column1)) ...READ MORE

answered Jun 24, 2022 in Data Science by Sohail
• 3,040 points
785 views
0 votes
0 answers

To speed up the tapply function in R, or another function to convert data frame into a matrix

I must turn a sizable dataset into ...READ MORE

Jun 24, 2022 in Data Science by Sohail
• 3,040 points
192 views
0 votes
1 answer

Big Data transformations with R

Dear Koushik, Hope you are doing great. You can ...READ MORE

answered Dec 18, 2017 in Data Analytics by Sudhir
• 1,610 points
730 views
0 votes
2 answers

Transforming a key/value string into distinct rows in R

We would start off by loading the ...READ MORE

answered Mar 26, 2018 in Data Analytics by Bharani
• 4,660 points
814 views
0 votes
1 answer

Finding frequency of observations in R

You can use the "dplyr" package to ...READ MORE

answered Mar 26, 2018 in Data Analytics by Bharani
• 4,660 points
5,510 views
0 votes
1 answer

Left Join and Right Join using "dplyr"

The below is the code to perform ...READ MORE

answered Mar 27, 2018 in Data Analytics by Bharani
• 4,660 points
837 views
0 votes
1 answer

How to make loop for one-at-a time logistic regression in R?

You're probably looking for something similar to ...READ MORE

answered Jun 20, 2022 in Data Science by Sohail
• 3,040 points
757 views
0 votes
1 answer

How To Create Vector of Vector In R

Create a list: List() on x returns x[[1]] ...READ MORE

answered Jun 24, 2022 in Data Science by Sohail
• 3,040 points
261 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP