Analyze the data using exploratory data analysis to help the company understand the trends & patterns within the data, and how the company can use these to improve their offerings?
3. With the insights drawn from the data exploration, compare linear regression models against multiple time series models to help understand which models are best suited to the data?
4. Submit a comprehensive case study which outlines a business plan which combines actionable steps the company can take in the present and in the future to improve their planning process
5. As part of the submissions for the report, here are the following required submissions:
a. A pdf report which details the findings, insights and recommendations from the analysis carried out by the group. The report should cover all 3 fields of data analytics, descriptive, inquisitive & predictive insights.
b. A tableau dashboard which contains interactive visualizations to help illustrate the findings of the analysis
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 });