I have 6 users data from my application that I did it in my project
and I want present them in charts
Also I have questionnaires’ result I want Explain them and put it in the chapter
I will attach questionnaire questions to understand it and the its results in excel file
please read my literature and my methodology and try to write in same level language please I don’t want my doctor notice the difference between mine and your.
I will attach my literature and methodology to understand my project
In terms of chart:
1- I want to show users evaluation rate for my application for contacts and application notification(+ is like,- is dislike)
2- show CPU and memory consumption in line graph(the application store how much the app consume per second while it is working.
So I have two result one from the app and one from the questionnaire the same users solved.
thank you
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 });

