Providing forecasts of USD/GBP exchange rate. Forecasting period : starting from April 19th and end May 9th. That is, starts from April 18th to forecast the time series for April 19th and then to sequentially forecast the next days. Two kinds of forecasts are required: 1-step ahead and 7-step ahead forecasts.
Also, providing forecasts of the monthly average low temperature of Newark, DE for April 2016. Only 1-step ahead forecast is required.
The historical data is attached. You need to use R to build models(ARIMA, transfer function model) for forecasting and compare to the actual data. You may change or update your models during the forecast period.
Finally, providing a full report that summarizes the data used, the model-building process, the final models and the results(including the forecasted values, MSE of the forecasts, confidence intervals, and etc.). R code should be included in the Appendix.
3 pages for USD/GBP forecast and 1 page for the temperature.
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 });

