The goal of the project is to predict the occurrence of stroke based on the data provided. you are allowed to use any of the below strategies using EXCEL or R software. Use the attached file to perform at least 5 of the following: Simple and Multiple Linear Regression in R Quadratic and/or Categorical Regression in R Creating functions in R Piecewise Linear Regression Model Regression On Large Dataset Forecasting Methods in R-Horizontal Patterns K-mean Clustering Nearest Neighborhood Classification K Nearest Neighborhood (KNN) You are expected to deliver a PowerPoint presentation, Excel files with the data cleaned, and some of the methods performed such as linear regression, and R script including the entire code. The presentation should include pictures from both R and Excel showing some of the results and the steps used. Dataset excel file : File Attached Dataset link : https://www.kaggle.com/datasets/fedesoriano/stroke-prediction-dataset/data You can use the following links to help you with the project: https://youtu.be/x35xZuUuuZ4 https://youtu.be/l8rJ5c_oslE https://www.youtube.com/watch?v=qst0QGBntxc https://youtu.be/onfXC1qe7LI https://youtu.be/HRwDN7LKSHs https://youtu.be/XCGzyhDE3p4 https://www.youtube.com/watch?v=NjKezNZWSLI https://www.youtube.com/watch?v=CnJmc-mW5mM https://www.youtube.com/watch?v=Hnw2gD6wtsg https://www.youtube.com/watch?v=fAhHSzVP-SQ https://www.youtube.com/watch?v=uBFp7_cwFlk https://youtu.be/_S5tvagaQRU https://youtu.be/wE8H-MEHSKs https://www.youtube.com/watch?v=vv1nML_sy0Y&list=PLTrfnl2vPj4q_6th1fe9N5DDVAVHxSyjs https://www.youtube.com/watch?v=ci1tYdyPZ4Y&feature=youtu.be https://www.youtube.com/watch?v=DkLNb0CXw84
Last Completed Projects
| topic title | academic level | Writer | delivered |
|---|
jQuery(document).ready(function($) { var currentPage = 1; // Initialize current page
function reloadLatestPosts() { // Perform AJAX request $.ajax({ url: lpr_ajax.ajax_url, type: 'post', data: { action: 'lpr_get_latest_posts', paged: currentPage // Send current page number to server }, success: function(response) { // Clear existing content of the container $('#lpr-posts-container').empty();
// Append new posts and fade in $('#lpr-posts-container').append(response).hide().fadeIn('slow');
// Increment current page for next pagination currentPage++; }, error: function(xhr, status, error) { console.error('AJAX request error:', error); } }); }
// Initially load latest posts reloadLatestPosts();
// Example of subsequent reloads setInterval(function() { reloadLatestPosts(); }, 7000); // Reload every 7 seconds });

