|
6 | 6 | * [Decision Tree](https://github.com/TheAlgorithms/R/blob/HEAD/classification_algorithms/decision_tree.r) |
7 | 7 | * [Gradient Boosting Algorithms](https://github.com/TheAlgorithms/R/blob/HEAD/classification_algorithms/gradient_boosting_algorithms.r) |
8 | 8 | * [Knn](https://github.com/TheAlgorithms/R/blob/HEAD/classification_algorithms/knn.r) |
9 | | - * [Lasso](https://github.com/TheAlgorithms/R/blob/HEAD/classification_algorithms/lasso.r) |
10 | 9 | * [Light Gbm](https://github.com/TheAlgorithms/R/blob/HEAD/classification_algorithms/light_gbm.r) |
| 10 | + * [Logistic Regression](https://github.com/TheAlgorithms/R/blob/HEAD/classification_algorithms/logistic_regression.r) |
| 11 | + * [Logistic Regression 2](https://github.com/TheAlgorithms/R/blob/HEAD/classification_algorithms/logistic_regression_2.r) |
11 | 12 | * [Naive Bayes](https://github.com/TheAlgorithms/R/blob/HEAD/classification_algorithms/naive_bayes.r) |
12 | 13 | * [Random Forest](https://github.com/TheAlgorithms/R/blob/HEAD/classification_algorithms/random_forest.r) |
13 | 14 | * [Svm](https://github.com/TheAlgorithms/R/blob/HEAD/classification_algorithms/svm.r) |
|
51 | 52 | * [Depth First Search](https://github.com/TheAlgorithms/R/blob/HEAD/graph_algorithms/depth_first_search.r) |
52 | 53 | * [Dijkstra Shortest Path](https://github.com/TheAlgorithms/R/blob/HEAD/graph_algorithms/dijkstra_shortest_path.r) |
53 | 54 |
|
54 | | -## [Levenshtein](https://github.com/TheAlgorithms/R/blob/HEAD//levenshtein.r) |
55 | | - |
56 | 55 | ## Mathematics |
57 | 56 | * [Amicable Numbers](https://github.com/TheAlgorithms/R/blob/HEAD/mathematics/amicable_numbers.r) |
58 | 57 | * [Armstrong Number](https://github.com/TheAlgorithms/R/blob/HEAD/mathematics/armstrong_number.r) |
|
63 | 62 | * [Fibonacci](https://github.com/TheAlgorithms/R/blob/HEAD/mathematics/fibonacci.r) |
64 | 63 | * [First N Fibonacci](https://github.com/TheAlgorithms/R/blob/HEAD/mathematics/first_n_fibonacci.r) |
65 | 64 | * [Greatest Common Divisor](https://github.com/TheAlgorithms/R/blob/HEAD/mathematics/greatest_common_divisor.r) |
66 | | - * [Hamming Distance](https://github.com/TheAlgorithms/R/blob/HEAD/mathematics/hamming_distance.r) |
67 | 65 | * [Josephus Problem](https://github.com/TheAlgorithms/R/blob/HEAD/mathematics/josephus_problem.r) |
68 | 66 | * [Least Common Multiple](https://github.com/TheAlgorithms/R/blob/HEAD/mathematics/least_common_multiple.r) |
69 | 67 | * [Perfect Number](https://github.com/TheAlgorithms/R/blob/HEAD/mathematics/perfect_number.r) |
|
80 | 78 |
|
81 | 79 | ## Regression Algorithms |
82 | 80 | * [Ann](https://github.com/TheAlgorithms/R/blob/HEAD/regression_algorithms/ann.r) |
83 | | - * [Gradient Boosting Algorithms](https://github.com/TheAlgorithms/R/blob/HEAD/regression_algorithms/gradient_boosting_algorithms.r) |
84 | | - * [Knn](https://github.com/TheAlgorithms/R/blob/HEAD/regression_algorithms/knn.r) |
85 | | - * [Light Gbm](https://github.com/TheAlgorithms/R/blob/HEAD/regression_algorithms/light_gbm.r) |
86 | 81 | * [Linear Regression](https://github.com/TheAlgorithms/R/blob/HEAD/regression_algorithms/linear_regression.r) |
87 | 82 | * [Linearregressionrawr](https://github.com/TheAlgorithms/R/blob/HEAD/regression_algorithms/linearregressionrawr.r) |
88 | | - * [Logistic Regression](https://github.com/TheAlgorithms/R/blob/HEAD/regression_algorithms/logistic_regression.r) |
89 | | - * [Logistic Regression 2](https://github.com/TheAlgorithms/R/blob/HEAD/regression_algorithms/logistic_regression_2.r) |
90 | 83 | * [Multiple Linear Regression](https://github.com/TheAlgorithms/R/blob/HEAD/regression_algorithms/multiple_linear_regression.r) |
91 | 84 |
|
92 | 85 | ## Searches |
|
123 | 116 | ## String Manipulation |
124 | 117 | * [Burrows](https://github.com/TheAlgorithms/R/blob/HEAD/string_manipulation/burrows.r) |
125 | 118 | * [Findpalindrome](https://github.com/TheAlgorithms/R/blob/HEAD/string_manipulation/findpalindrome.r) |
| 119 | + * [Hamming Distance](https://github.com/TheAlgorithms/R/blob/HEAD/string_manipulation/hamming_distance.r) |
126 | 120 | * [Is.Anagram](https://github.com/TheAlgorithms/R/blob/HEAD/string_manipulation/is.anagram.r) |
127 | 121 | * [Is.Lower](https://github.com/TheAlgorithms/R/blob/HEAD/string_manipulation/is.lower.r) |
128 | 122 | * [Is.Uppercase](https://github.com/TheAlgorithms/R/blob/HEAD/string_manipulation/is.uppercase.r) |
| 123 | + * [Levenshtein](https://github.com/TheAlgorithms/R/blob/HEAD/string_manipulation/levenshtein.r) |
129 | 124 | * [Longest.Palindromic.Subsequence](https://github.com/TheAlgorithms/R/blob/HEAD/string_manipulation/longest.palindromic.subsequence.r) |
130 | 125 | * [Longest.Substring.No.Repeat](https://github.com/TheAlgorithms/R/blob/HEAD/string_manipulation/longest.substring.no.repeat.r) |
131 | 126 | * [Manacher.Longest.Palindrome](https://github.com/TheAlgorithms/R/blob/HEAD/string_manipulation/manacher.longest.palindrome.r) |
|
0 commit comments