Next Article in Journal
Elevating Univariate Time Series Forecasting: Innovative SVR-Empowered Nonlinear Autoregressive Neural Networks
Next Article in Special Issue
Enhancing Ultimate Bearing Capacity Prediction of Cohesionless Soils Beneath Shallow Foundations with Grey Box and Hybrid AI Models
Previous Article in Journal
Special Issue “Neural Network for Traffic Forecasting”
Previous Article in Special Issue
Classification of CO Environmental Parameter for Air Pollution Monitoring with Grammatical Evolution
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Machine-Learning-Based Imputation Method for Filling Missing Values in Ground Meteorological Observation Data

1
School of Computer and Communication, LanZhou University of Technology, LanZhou 730050, China
2
National Cryosphere Desert Date Center, Northwest Institute of Eco-Environment and Resources, Chinese Academy of Sciences, Lanzhou 730000, China
*
Author to whom correspondence should be addressed.
Algorithms 2023, 16(9), 422; https://doi.org/10.3390/a16090422
Submission received: 31 July 2023 / Revised: 30 August 2023 / Accepted: 31 August 2023 / Published: 2 September 2023
(This article belongs to the Special Issue Machine Learning Algorithms in Prediction Model)

Abstract

:
Ground meteorological observation data (GMOD) are the core of research on earth-related disciplines and an important reference for societal production and life. Unfortunately, due to operational issues or equipment failures, missing values may occur in GMOD. Hence, the imputation of missing data is a prevalent issue during the pre-processing of GMOD. Although a large number of machine-learning methods have been applied to the field of meteorological missing value imputation and have achieved good results, they are usually aimed at specific meteorological elements, and few studies discuss imputation when multiple elements are randomly missing in the dataset. This paper designed a machine-learning-based multidimensional meteorological data imputation framework (MMDIF), which can use the predictions of machine-learning methods to impute the GMOD with random missing values in multiple attributes, and tested the effectiveness of 20 machine-learning methods on imputing missing values within 124 meteorological stations across six different climatic regions based on the MMDIF. The results show that MMDIF-RF was the most effective missing value imputation method; it is better than other methods for imputing 11 types of hourly meteorological elements. Although this paper applied MMDIF to the imputation of missing values in meteorological data, the method can also provide guidance for dataset reconstruction in other industries.

1. Introduction

Ground meteorological observation data (GMOD) include multiple elements such as temperature, humidity, wind speed, wind direction, air pressure, precipitation, cloud cover, visibility, etc. These elements reflect meteorological conditions and changes on the earth’s surface and are the basis of research on earth-related disciplines. For example, GMOD are inevitably used in the process of weather forecasting [1,2] or climate change analysis [3,4,5]. Additionally, they are an important reference for societal production and life and can be used for disaster warning [6,7,8], agriculture [9,10], forestry [11,12,13], tourism [14,15], marine fisheries [16,17], water conservancy [18,19], transportation [20,21], and other fields. Effective use of GMOD may help stakeholders, including the government, to avoid environmental problems and damages, providing a wide range of social benefits.
To meet different service requirements and functions, weather stations can use various sensors to monitor different environmental factors and transmit data within minutes or even seconds. However, there are inevitable problems such as operational errors, sensor failures, network transmission failures, and storage failures that can cause missing values within the meteorological observation dataset. Consequently, adopting rational techniques to handle missing data during the data preprocessing phase is essential for ensuring the integrity and dependability of the data.
The most direct method for missing value processing is deletion [22], which means deleting records with missing values or outliers. The advantage of this method is that it is simple to operate, but it may cause information loss, lead to data deviation [23], destroy the continuity of time series, and cause bias or even errors in the analysis results [24].
Imputing missing values is an effective way to make data complete and to avoid analysis errors or the inability to perform analysis due to missing values. Of course, imputing missing values also has certain limitations and risks, such as introducing some biases or errors, resulting in inaccurate or unreliable data analysis results. Therefore, when choosing the method of imputing missing values, it is necessary to choose the appropriate method according to the type, distribution, missing mechanism, and other factors of the data. The simplest imputation methods include the mean imputation [25] (replacing missing values with the average of non-missing values in the attribute), mode imputation [26] (replacing missing values with the most frequent value in the attribute), and median imputation [27] (replacing missing values with the middle value in the sorted data). However, these methods tend to reduce the overall variance of the imputed dataset and cause a large amount of data homogenization. Another common and simple imputation method is hot-deck imputation, which replaces missing data with values from existing data that meet a set of rules. The advantage of this method is that it uses the relationship between data to estimate missing values, but the disadvantage is that the rule setting is more subjective. The above two types of imputation methods are often used as benchmark methods for comparison with other imputation methods [28,29].
Another frequently used technique for estimating missing values is multiple impu-tation. It has a better imputation effect than traditional methods such as mean imputation and median imputation [30,31], but the imputation process may fail. Cattram [32] summarized the causes of imputation failure, including perfect prediction and collinearity.
The imputation method based on machine learning can adapt to any missing patterns and has good robustness and small deviation. It also interpolates complex high-dimensional data better than mean, hot-deck, and multiple imputation methods [33]. This method learns the rules in the data through relevant algorithms and uses them to interpolate the data. In the field of meteorological missing value imputation, this method has three basic forms of application.
The first form is to use machine-learning algorithms directly. Some researchers have confirmed the validity of some machine-learning imputation methods. For instance, random forest (RF) [34] and multi-layer perceptron neural networks (MLP) [35] have the ability to accurately reconstruct meteorological variables, particularly temperature. In the research by Taewon [36], two statistical imputation methods (linear and spline) and three machine-learning methods (multivariate linear regression (MLR), RF, and MLP) interpolated the missing values of seven meteorological variables, respectively. The findings indicate that machine-learning imputation methods are more applicable than statistical imputation methods for handling missing data in both the short and long term. Moreover, MLP exhibited the highest level of accuracy across all experiments.
The second form is based on the improvement of the existing algorithm. Bo [37] designed an auto-encoder architecture with a convolution layer to reconstruct missing wind speed data. Compared with the six traditional data reconstruction methods, the designed network had the lowest reconstruction error.
The third version combines various machine-learning techniques. For example, Jinhua [38] used long short-term memory networks (LSTM) and support vector regression (SVR) to interpolate missing wind pressure data. Samal’s model [39] is composed of temporal convolutional networks (TCN) and convolutional neural networks (CNN), which are used to estimate the missing value of PM2.5. The experimental results indicated that the combined model has a higher imputation accuracy than the single model. Multi-model combination can also be used to interpolate some meteorological parameters that are difficult to recover, such as precipitation. Precipitation data are a special challenge for the recovery of missing data, because these data are random and highly unbalanced in the duration of rainfall and non-rainfall. Benedict [40] proposed an imputation model of rainfall that was classified and then predicted. Gradient tree boosting, K-nearest neighbors (KNN), RF, support vector machines (SVM), and neural networks were tested via classification and prediction algorithms, respectively. The test results showed that a combination of RF and neural networks is superior to surface fitting technology in recovering missing precipitation data at a 30 min resolution.
By reviewing the existing literature, it can be seen that the imputation method based on machine learning has advantages in the field of reconstruction of ground weather station missing values, but there are also some problems. First, much of the literature tends to focus on the imputation of a certain meteorological element, but when multiple parameters (such as temperature, humidity, wind speed, etc.) in the dataset have random missing values at the same time, using the existing data in the dataset to fill these missing values is a problem that is rarely discussed in the literature. Second, there are many machine-learning methods, but their verification in the field of meteorological data imputation is insufficient. Most machine-learning method types are verified in [39], but only eight methods are verified overall. Third, in addition to Joseph’s extensive tests on imputation algorithms of 134 weather stations [34], a limited number of studies have assessed the performance of machine-learning meteorological imputation methods in multiple locations or examined the effectiveness of different algorithms in various climatic regions. Finally, some comparisons are unfair, such as comparing a combined model with a single model, comparing a fine-tuned model with an untuned model, and running the algorithm with carefully selected and processed datasets. Therefore, within the existing literature, it is hard to find an answer to the question of: “Which machine learning model can most accurately impute missing meteorological data?” or “Under what conditions is method x suitable?”
In this study, a multidimensional meteorological data imputation framework (MMDIF) that uses machine-learning predictions to reconstruct missing meteorological data was designed. Based on MMDIF, the imputation performance of 20 typical machine-learning methods for the missing values of 124 pieces of ground meteorological observation data in six climatic regions was verified. Each method was automatically individually tuned to guarantee optimal performance.

2. Data

The data used in this paper were sourced from the National Water and Climate Center (NRCS), which is affiliated with the U.S. Department of Agriculture. The agency has 226 automatic monitoring stations set up across the United States to monitor hourly changes in soil, atmosphere, precipitation, wind, and other elements in real time, and it has built the largest database of soil, water resource, and climate data in the United States. This study collected hourly meteorological data of 124 stations from 2010 to 2019, including 11 meteorological elements, namely, air temperature (TOBS), maximum air temperature (TMAX), minimum air temperature (TMIN), maximum wind speed (WSPDX), average wind speed (WSPDV), solar radiation (SRADV), dew point temperature (DPTP), air pressure (PVPV), relative humidity (RHUM), minimum humidity (RHUMN), and maximum humidity (RHUMX). According to the Köppen climate classification index, we divided the collected station data into six types of climate types, with each type represented by three letters. The main climate condition is represented by the first letter, which can be one of the following: (A) equatorial climate, (B) arid climate, (C) warm climate, (D) snow climate, or (E) polar climate. The second and third letters indicate precipitation and temperature conditions, respectively. For example, BWh indicates that the area is located in a dry and rainless desert climate. To obtain further information on the climate classification, please refer to [41]. Figure 1 illustrates the distribution of the 124 stations studied in the experiment.
This paper performed outlier detection on the experimental data and deleted the data items that contained outliers to avoid the influence of outliers on some machine-learning methods that rely on certain assumptions and calculations, such as linear regression, logistic regression, support vector machine, etc.
When imputation is applied directly to the original data, the extent of discrepancy between the imputation result and the true value cannot be assessed due to the unavailability of the true value for the missing data. This paper selected the non-missing records of all stations, randomly deleted some units according to the proportion, recorded the deleted part as the true value, and then imputed data according to the proposed framework, so that the difference between the imputed value and the true value could be evaluated. The missing value rate in this study was set at 10%, 20%, 40%, 60%, and 80%.

3. Methodology

This paper outlines the designed multidimensional meteorological data imputation framework (MMDIF) based on machine learning, which uses the predicted values of machine-learning models as the imputed values of missing data. The non-missing data in the feature to be imputed are used as the label data for training the model, and the features in the dataset that have a correlation with the feature to be imputed are used as the input data for the model. It is assumed that the dataset contains N observation values (such as temperature, humidity, wind speed, etc.), which we usually call the features of the data. Each feature has a certain percentage of randomly missing values. The MMDIF designed in this paper is as follows:
  • Step 1: Choose the feature with the least missing values in the dataset as the feature to be filled in, mark it as data”, and mark the remaining features as data’.
  • Step 2: Divide data’ by day into layers, and replace the missing cells in each layer with the mean of the recorded cells in that layer as temporary imputation values.
  • Step 3: Take the non-missing data in data” as the label of machine learning and record the line number z where the missing value is located in data”.
  • Step 4: Calculate the correlation between each feature and label in data’ except for row z, and keep the features with a correlation greater than 0.2 as the machine-learning trainset (a correlation coefficient below 0.2 means that there is a very weak correlation between the two variables [42]). The correlation analysis uses the spearman correlation coefficient, which can reflect the degree of correlation between the two variables, x and y, based on Equation (1), where n represents the sample size, and x ¯ and y ¯ represent the sample mean:
    r = i n ( x i x ¯ ) ( y i y ¯ ) i n ( x i x ¯ ) 2 i n ( y i y ¯ ) 2
  • Step 5: Select the features consistent with trainset in data", and select the z line as the testset.
  • Step 6: Train the machine learning model using the label and trainset created in Steps 3 and 4.
  • Step 7: Input the testset into the model trained in Step 6, and impute the output values of the model to the corresponding positions in data.
  • Step 8: Check the data. If there are missing values, return to Step 1 and continue the imputation program; otherwise, exit the program.
The MMDIF imputation process is illustrated in Figure 2. The machine-learning module depicted in the figure employs a variety of prediction mechanisms, including 20 mainstream machine-learning methods. These methods encompass linear, tree-based, instance-based, kernel-based, probability-based, and neural network-based methods. Table 1 provides a brief overview of these methods. The neural network methods are implemented using the Keras and Tensorflow modules, and the remaining methods are implemented using the scikit-learn modules. The implementation process requires setting hyperparameters for each model, and the choice of model hyperparameters greatly affects the performance of the model. In order for each model to achieve the best possible performance, in this paper, the most advantageous hyperparameter combination for the model was sought out via a grid search of the variable space [43]. Because the weight matrix initialization greatly influences the performance of neural network-based methods, we repeated these algorithms ten times on the same data and computed the mean of the results. This allowed us to compare them fairly with other machine-learning methods.

4. Results

This section discusses the imputation performance of machine-learning models for meteorological datasets with missing values from four aspects. First, the imputation accuracy of each model was evaluated under different missing value rates. Second, the imputation performance of each model was contrasted across various climate types. Third, the best missing value imputation method for each observation value was discussed. Fourth, since a long model training time affects real-time tasks, the training time of the imputation models was also discussed. Finally, to validate the efficacy of the MMDIF introduced in this research, we conducted a comparison with algorithms featured in other research papers.

4.1. Model Performance at Different Observations

Since each meteorological station produces observation data containing multiple meteorological elements, and the units of these meteorological elements are not consistent, this section used two dimensionless indicators, the determination coefficient (R2) and the symmetric mean absolute percentage error (SMAPE), to evaluate the imputation ability of different machine-learning methods for meteorological datasets with missing values. The closer the R2 is to 1, the more accurately the algorithm fits the data, and the closer the SMAPE is to 0, the smaller and more precise the prediction error of the algorithm is. Their definitions are shown in:
R 2 = 1 l = 1 m ( y l y l ^ ) 2 l = 1 m ( y l y ¯ ) 2
S M A P E = 100 % m l = 1 m | y l ^ y l | y l ^ + y l / 2
where m represents the sample size, y l represents the true value, y l ^ represents the model output value, and y ¯ represents the mean value of attribute y.
Table 2 displays the average results of 20 machine-learning methods used to impute missing values in 124 meteorological observation datasets under different missing value rates within the MMDIF. According to the results recorded in the table, the data missing rate is the primary factor that impacts the accuracy of imputation. Regardless of whether it is based on the R2 or SMAPE, all methods will achieve the best performance of the method at a low missing rate (10%). The reason for this is that when the missing value rate is small, the missing items have a limited influence on the overall distribution of the data samples. As the missing rate increases gradually, the original distribution characteristics of the data are altered by the growing number of missing values, which leads to a decline in the imputation method’s performance with the higher missing rate. Among all methods, the RF is the most reliable imputation method. Based on the SMAPE, the RF performs better than other algorithms in all imputation experiments with all missing value rates presented in this paper. Meanwhile, based on the R2, the RF performs better than other methods when the missing rate is 10%, 20%, and 40%, and the RF’s R2 is slightly lower than the TCN only when the missing rate is 60% and 80%.
Figure 3 shows the imputation results of the MMDIF combined with RF on all sites. Each scatter point in the figure represents the imputation result of MMDIF-RF on a dataset. The distribution of scatter points in the figure reflects the robustness of the algorithm on different datasets, and the more densely the data points are distributed in the vertical direction, the more stable the algorithm is. RF performed very well at a low data missing rate of 10%, with the R2 above 0.9 for 116 stations (93.5% of the total) and the SMAPE below 5% for 91 stations (73.4% of the total). As the data missing rate increases to 20%, the R2 remains above 0.9 for 85 stations (68.5% of the total), and the SMAPE stays below 5% for 65 stations (52.4% of the total). However, at a high data missing rate of 60%, RF’s R2 drops significantly to around 0.8 for most stations (97 out of 124), and the SMAPE rises to an average of 7.59%, with a large variation among stations. At an extremely high data missing rate of 80%, both the R2 and SMAPE become sparse and unstable, indicating poor data imputation results.
Neural network-based techniques fall into the second category. Of these methods, BiLSTM performs well. This may be related to its special structure, which can capture the time series characteristics in the data, and this may enable it to cope with missing data [44].
The results of the six linear regression methods (MLR, Ridge, Lasso, Enet, BR, and ARD) are very close on R2 and SMAPE, and there is no obvious difference in their performance. They have a weak ability to impute missing data, because these algorithms are all based on linear assumption models, whereas GMOD have nonlinear or complex patterns, which causes the models to not fit or predict the data well. We noticed that ERT’s R2 was the lowest at all missing rates, suggesting that ERT is not suitable for imputing missing values in GMOD. This may lead to a decrease in the correlation and distribution between the imputed data and the original data.
As the missing rate increases, the prediction accuracy of all algorithms decreases, but the degree of decrease varies. This paper used Equations (4) and (5) to calculate the decrease in the imputation accuracy of each algorithm when the missing rate rose from 10% to 80%, where R 10 % 2 and R 80 % 2 , S M A P E 10 % and S M A P E 80 % represent the R2 and SMAPE obtained using one of the methods when the missing rate is 10% and 80%, respectively. The results are shown in Figure 4.
R 2   d e c l i n e   r a n g e = ( R 10 % 2 R 80 % 2 ) / R 10 % 2
S M A P E   d e c l i n e   r a n g e = ( S M A P E 80 % S M A P E 10 % ) / S M A P E 10 %
In general, there was a certain positive correlation between the decrease in R2 and the decrease in SMAPE, that is, the larger the decrease in R2, the larger the decrease in SMAPE. However, Figure 4 shows that neural network-based algorithms (such as Perceptron, BiLSTM, MLP, LSTM, RNN, etc.) have smaller R2 decreases and larger SMAPE decreases than other types of algorithms, such as linear regression, probability-based algorithms, and tree-based methods. Such a difference suggests that neural network algorithms perform better on the R2 metric but worse on the SMAPE metric. A possible explanation for this could be that neural network algorithms can capture the complex features and nonlinear relationships in the data more effectively [45], which improves the R2 value, but they also tend to overfit the noise or outliers in the data, which lowers the SMAPE value.
As shown previously, RF is less accurate than TCN, except for at 60% and 80% missing rates, but more accurate at 10%, 20% and 40%. However, Figure 4 reveals that the R2 drops by 19.9%, and the SMAPE rises by 86.2% for RF, whereas TCN only sees a 11.1% R2 decline and a 36.2% SMAPE increase as the missing rate grows from 10% to 80%. This means TCN is more robust for missing rate changes, which is crucial in practice, as we cannot control or predict a missing rate. A sensitive algorithm would require frequent parameter tuning or replacement, increasing our work and cost. An insensitive algorithm can reliably handle any missing data without affecting the imputation quality.
In addition to RF, five other tree-based methods (DTR, AdaBoost, GBDT, ERT, Bagging) saw the R2 drop by 21.4%–39.2% and the SMAPE rise by 58.4%–93.2%, with ERT exhibiting the worst performance for both metrics, showing its low stability and accuracy for missing data imputation. The kernel-based (SVR) and instance-based (KNN) methods have similar imputation accuracy declines as the missing rate increases. Their R2 falls by around 24% and their SMAPE climbs by around 70% when the missing rate goes from 10% to 80%. They interpolated well with increasingly low missing data but performed poorly on increasingly high missing data.

4.2. Model Performance under Different Climate Zones

Figure 5 and Figure 6 show the best imputation methods for each climate type and the number of times they achieved the best imputation results based on R2 and SMAPE criteria, respectively. The figures indicate that RF emerged as the most dependable imputation method. It achieved higher R2 than others in most sites across all climate zones for 10–40% missing rates. For instance, in the BSk zone with 37 sites, RF beat the other 19 methods at 33 (89.1% of BSk), 35 (94.6% of BSk), and 35 (94.6% of BSk) sites for 10%, 20%, and 40% missing rates, respectively. However, TCN became more competitive with higher missing rates. In the BSk zone, TCN outperformed others at 29 (78.4%) sites for an 80% missing rate, whereas RF only achieved this at 7 (18.9%) sites. Using the SMAPE as the criterion, RF dominated other methods across all climate types and missing rates. BiLSTM also performed well with missing rates below 60% but struggled with higher ones. Other algorithms such as Bagging, LSTM, GBDT, KNN, DTR, SVR, and ERT excelled in some cases but lacked consistency overall.
The average performance of each algorithm in each climate zone was calculated, and the results are given in Figure 7. In the Cfa, Dfa, and Dfb climate zones, the R2 of all algorithms was generally higher than those in the BSk, BWh, and Csa climate zones, and according to the SMAPE indicator, the algorithms performed better in the Dfb, Dfa, and Csa climate zones. Considering both indicators, all algorithms performed poorly in the BWh and BSk climate zones. When comparing various climate types, it can be observed that the BSk (semi-arid steppe climate) and BWh (desert climate) experience greater levels of evaporation than precipitation, with the precipitation being mainly concentrated in either summer or winter. Therefore, the distribution of observation data related to precipitation, such as the relative humidity (RHUM), minimum humidity (RHUMN), maximum humidity (RHUMX), and dew point temperature (DPTP), is not uniform across the dataset. As a result, the data used to train the model and the data to be interpolated will exhibit a significant difference in data distribution. This should be the main reason for the poor performance of the imputation model under the BWh and BSk climate conditions.

4.3. Model Performance for Each Observation Element

Table 3 displays the optimal and least effective imputation techniques for 11 meteorological observation elements. The first line of each cell in the table records the best method, and the second line records the worst method. The RMSE, MAE, R2, and SMAPE were the average values of the imputation results of the imputation algorithm at five missing value rates. The definitions of the RMSE and MAE are shown in Equations (6) and (7), respectively, and the definitions of the R2 and SMAPE are given in Section 4.1.
R M S E = 1 m l = 1 m ( y l y l ^ ) 2
M A E = 1 m l = 1 m | ( y l y l ^ ) |
According to the records in Table 3, the RF is undoubtedly the most ideal method for imputing missing values. For the 11 meteorological observations presented in this paper, the imputation results of the RF could maintain the highest R2 and the lowest RMSE, MAE, and SMAPE. AdaBoost, ERT, Enet, BR, ARD, SVR, and TCN had the worst records, especially AdaBoost, which is not ideal for imputing missing values of the temperature (TOBS, TMIN, and TMAX) and humidity (RHUM, RHUMN, and RHUMX) data. The 20 imputation methods used in this paper performed poorly on the WSPDX, WSPDV, and SRADV, which can be observed very clearly with the R2 and SMAPE, two dimensionless indicators. The R2 of RF and TCN, which they perform the best, only reached 0.48–0.66 for these three observations. In the future, it is worth paying attention to the imputation of missing values for wind speed and solar radiation.
Figure 8 shows the imputation results for each observation variable at the 2008 meteorological observation site. Each subplot draws the best and worst imputation results for one observation variable. As mentioned in Section 4.1, the data missing rate is the main factor affecting the data imputation results. When the data missing rate reaches 80%, there is a significant difference between the imputation results and the original data. When the missing rate is less than 60%, the RF imputation results for temperature (TBOS, TMIN, TMAX, and DPTP), humidity (RHUM, RHUMN, and RHUMX), and air pressure (PVPV) are highly consistent with the original data.

4.4. Training Duration of the Model

Table 4 records the training duration of all methods. The hardware environment for model training is Intel i7-8700 (CPU), 64 G (RAM), 1050 Ti (GPU). The six linear regression methods outlined in this paper had similar imputation effects, but their training time varied greatly, with MLR being the fastest (less than 1 s) and ARD being the slowest (more than 5 min on average).
In both the tree-based categories, the RF was the slowest, taking an average training time of nearly 1 min. However, it had the best imputation effect among all algorithms. A method that is faster than the RF and has a similar imputation effect was Bagging, taking 8 s as an average training time. Its R2 is 1% lower than that of RF, and its SMAPE is 3% higher than that of the RF.
As seen from previous analysis, BiLSTM, LSTM, and TCN are three neural network imputation methods with a better performance. However, due to their structure, LSTM and BiLSTM can only read and parse one record at a time, and they have to process each record sequentially. Hence, LSTM and BiLSTM take a long time to train. In our experiment, the longest training time of LSTM was 4680.28 s, and that of BiLSTM was 6061.58 s, which is too slow for data imputation tasks at the hourly level. TCN is a novel structure that applies convolutional networks to time series learning tasks, solving the problem of LSTM and BiLSTM being hard to parallelize and significantly reducing the training time.

4.5. Comparison with Other Studies

Joseph [34] introduced an imputation method based on RF in his paper, which is used to impute the missing 15 min and daily maximum/minimum temperature observations of 134 sites in Washington State over 8.5 years, with a data missing rate of only 3.3%. We compared the imputation results with Joseph’s best imputation results when the missing rate was 10%, as shown in Table 5. In the case of a higher missing rate, the MMDIF-RF method used in this paper was more accurate than Joseph’s method for imputing the TBOS, TMAX, and TMIN.

5. Conclusions

Complete and accurate GMOD are crucial for social and economic development and people’s daily lives, but data can be lost due to various issues during collection, transmission, and storage. As a result, numerous techniques have been developed for recovering lost data. Machine-learning methods are among the most widely used methods for interpolating meteorological missing values, as they offer high accuracy, simple operation, and other benefits. However, when utilizing machine-learning methods to interpolate meteorological data, the intrinsic relationship among the observation variables has been overlooked by many studies, and only a small number of studies have thoroughly assessed the performance of different machine-learning methods across a wide range of sites.
In this paper, we propose a machine-learning-based multidimensional meteorological data imputation framework (MMDIF), which can use machine-learning predictions to reconstruct GMOD with random missing values across multiple attributes. We used this framework to compare the missing value imputation performance of 20 machine-learning methods. The data we used were sourced from 10 years of observation data of 124 stations in six climate zones of the continental U.S., including 11 variables. Based on four evaluation indicators for assessing the predictive performance of models, R2, SMAPE, RMSE, and MAE, we find that RF, BiLSTM, and TCN had the best imputation effects for missing data. They were more accurate than the other regression methods for most stations, especially the RF. The RF performed better than the other methods in interpolating 11 meteorological variables under the six climate types in this paper, especially for TBOS, TMIN, TMAX, DPTP, PVPV, RHUM, RHUMN, and RHUMX. For these eight variables, RF achieves a R2 above 0.9 and a SMAPE below 9% (R2 and SMAPE are the average values of the imputation results at five missing rates). The literature [46] has shown that RF uses random sampling, random splitting, and voting mechanisms in modeling and prediction, which can effectively avoid overfitting or underfitting of the model, improve the accuracy and robustness of the model, and have a better performance than deep learning in dealing with missing data imputation. However, in this study, it was found that none of the 20 imputation methods performed well for wind speed and solar radiation variables (WSPDX, WSPDV, and SRADV). This indicates that the imputation framework proposed in this paper has certain limitations when handling these specific variables. Some of the limitations include modifying the framework structure, incorporating new data (such as the sampling time of the data as an input variable), and handling data separately for different seasons. These needed to be further explored in future research. Although we have tested the MMDIF-RF with GMOD in this study, this method can also be a reference for missing data imputation within other domains.

Author Contributions

Conceptualization, C.L.; methodology, C.L.; software, C.L.; original draft preparation, C.L.; review and editing of manuscript, C.L. and G.Z.; visualization, C.L. and X.R.; data curation, G.Z. All authors have read and agreed to the published version of the manuscript.

Funding

This research was funded by the National Key R&D Program of China (project No. 2022YFF0711700); the project of the School of Computer and Communication, Lanzhou University of Technology, on the research of fine temperature prediction models based on deep learning (project No. H1814cc012); and Light of West China Program of Chinese Academy of Sciences (project No. E2297801).

Data Availability Statement

The data that support the findings of this study are openly available in National Water and Climate Center of the US Department of Agriculture (https://www.nrcs.usda.gov/resources, accessed on 29 August 2023).

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Fathi, M.; Haghi Kashani, M.; Jameii, S.M.; Mahdipour, E. Big Data Analytics in Weather Forecasting: A Systematic Review. Arch. Comput. Methods Eng. 2021, 5, 1247–1275. [Google Scholar] [CrossRef]
  2. Zhou, C.; Li, H.; Yu, C.; Xia, J.; Zhang, P. A station-data-based model residual machine learning method for fine-grained meteorological grid prediction. Appl. Math. Mech. 2022, 43, 155–166. [Google Scholar] [CrossRef]
  3. Magistrali, I.C.; Delgado, R.C.; dos Santos, G.L.; Pereira, M.G.; de Oliveira, E.C.; Neves, L.D.O.; de Souza, L.P.; Teodoro, P.E.; Junior, C.A.S. Performance of CCCma and GFDL climate models using remote sensing and surface data for the state of Rio de Janeiro-Brazil. Remote Sens. Appl. Soc. Environ. 2021, 21, 100446. [Google Scholar] [CrossRef]
  4. Sebestyén, V.; Czvetkó, T.; Abonyi, J. The Applicability of Big Data in Climate Change Research: The Importance of System of Systems Thinking. Front. Environ. Sci. 2021, 9, 70. [Google Scholar] [CrossRef]
  5. Ding, X.; Zhao, Y.; Fan, Y.; Li, Y.; Ge, J. Machine learning-assisted mapping of city-scale air temperature: Using sparse meteorological data for urban climate modeling and adaptation. Build. Environ. 2023, 234, 110211. [Google Scholar] [CrossRef]
  6. Khan, S.; Kirschbaum, D.; Stanley, T. Investigating the potential of a global precipitation forecast to inform landslide prediction. Weather. Clim. Extrem. 2021, 33, 100364. [Google Scholar] [CrossRef]
  7. Freitas, A.A.D.; Oda, P.S.S.; Teixeira, D.L.S.; Silva, P.D.N.; Mattos, E.V.; Bastos, I.R.P.; Nery, T.D.; Meetodiev, D.; Santos, A.P.P.d.; Gonçalves, W.A. Meteorological conditions and social impacts associated with natural disaster landslides in the Baixada Santista region from March 2nd–3rd, 2020. Urban Clim. 2022, 42, 101110. [Google Scholar] [CrossRef]
  8. Zhang, Y.; Wu, Y.; Zhang, F.; Yao, X.; Liu, A.; Tang, L.; Mo, J. Application of power grid wind monitoring data in transmission line accident warning and handling affected by typhoon. Energy Rep. 2022, 8, 315–323. [Google Scholar] [CrossRef]
  9. Wang, F.; Lai, H.; Li, Y.; Feng, K.; Zhang, Z.; Tian, Q.; Zhu, X.; Yang, H. Dynamic variation of meteorological drought and its relationships with agricultural drought across China. Agric. Water Manag. 2021, 261, 107301. [Google Scholar] [CrossRef]
  10. Iniyan, S.; Varma, V.A.; Naidu, C.T. Crop yield prediction using machine learning techniques. Adv. Eng. Softw. 2023, 175, 103326. [Google Scholar] [CrossRef]
  11. Fraccaroli, C.; Govigli, V.M.; Briers, S.; Cerezo, N.P.; Jimenez, J.P.; Romero, M.; Lindner, M.; de Arano, I.M. Climate data for the European forestry sector: From end-user needs to opportunities for climate resilience. Clim. Serv. 2021, 23, 100247. [Google Scholar] [CrossRef]
  12. Ghafarian, F.; Wieland, R.; Lüttschwager, D.; Nendel, C. Application of extreme gradient boosting and Shapley Additive explanations to predict temperature regimes inside forests from standard open-field meteorological data. Environ. Model. Softw. 2022, 156, 105466. [Google Scholar] [CrossRef]
  13. Kern, A.; Marjanović, H.; Csóka, G.; Móricz, N.; Pernek, M.; Hirka, A.; Matošević, D.; Paulin, M.; Kovač, G. Detecting the oak lace bug infestation in oak forests using MODIS and meteorological data. Agric. For. Meteorol. 2021, 306, 108436. [Google Scholar] [CrossRef]
  14. Barnet, A.F.; Ciurana, A.B.; Pozo, J.X.O.; Russo, A.; Coscarelli, R.; Antronico, L.; De Pascale, F.; Saladié, Ò.; Anton-Clavé, S.; Aguilar, E. Climate services for tourism: An applied methodology for user engagement and co-creation in European destinations. Clim. Serv. 2021, 23, 100249. [Google Scholar] [CrossRef]
  15. Wang, L.; Zhou, X.; Lu, M.; Cui, Z. Impacts of haze weather on tourist arrivals and destination preference: Analysis based on Baidu Index of 73 scenic spots in Beijing, China. J. Clean. Prod. 2020, 273, 122887. [Google Scholar] [CrossRef]
  16. Cerim, H.; Özdemir, N.; Cremona, F.; Öğlü, B. Effect of changing in weather conditions on Eastern Mediterranean coastal lagoon fishery. Reg. Stud. Mar. Sci. 2021, 48, 102006. [Google Scholar] [CrossRef]
  17. Amon, D.J.; Palacios-Abrantes, J.; Drazen, J.C.; Lily, H.; Nathan, N.; van der Grient, J.M.A.; McCauley, D. Climate change to drive increasing overlap between Pacific tuna fisheries and emerging deep-sea mining industry. NPJ Ocean Sustain. 2023, 2, 9. [Google Scholar] [CrossRef]
  18. Jia, D.; Zhou, Y.; He, X.; Xu, N.; Yang, Z.; Song, M. Vertical and horizontal displacements of a reservoir slope due to slope aging effect, rainfall, and reservoir water. Geod. Geodyn. 2021, 16, 266–278. [Google Scholar] [CrossRef]
  19. Liu, Y.; Shan, F. Global analysis of the correlation and propagation among meteorological, agricultural, surface water, and groundwater droughts. J. Environ. Manag. 2023, 333, 117460. [Google Scholar] [CrossRef]
  20. Joshua, S.; Yi, L. Effects of extraordinary snowfall on traffic safety. Accid. Anal. Prev. 2015, 81, 194–203. [Google Scholar] [CrossRef]
  21. Lu, H.P.; Chen, M.Y.; Kuang, W.B. The impacts of abnormal weather and natural disasters on transport and strategies for enhancing ability for disaster prevention and mitigation. Transp. Policy 2019, 98, 2–9. [Google Scholar] [CrossRef]
  22. Newman, D.A. Missing Data: Five Practical Guidelines. Organ. Res. Methods 2014, 17, 372–411. [Google Scholar] [CrossRef]
  23. Lokupitiya, R.S.; Lokupitiya, E.; Paustian, K. Comparison of missing value imputation methods for crop yield data. Environmetrics 2006, 17, 339–349. [Google Scholar] [CrossRef]
  24. Schafer, J.L.; Graham, J.W. Missing data: Our view of the state of the art. Psychol. Methods 2002, 7, 147–177. [Google Scholar] [CrossRef]
  25. Felix, I.K.; Rian, C.R.; Leon, T. Local mean imputation for handling missing value to provide more accurate facies classification. Procedia Comput. Sci. 2023, 216, 301–309. [Google Scholar] [CrossRef]
  26. Xu, X.; Xia, L.; Zhang, Q.; Wu, S.; Wu, M.; Liu, H. The ability of different imputation methods for missing values in mental measurement questionnaires. BMC Med. Res. Methodol. 2020, 20, 42. [Google Scholar] [CrossRef]
  27. Berkelmans, G.F.; Read, S.H.; Gudbjörnsdottir, S.; Wild, S.H.; Franzen, S.; Van Der Graaf, Y.; Eliasson, B.; Visseren, F.L.J.; Paynter, N.P.; Dorresteijn, J.A.N. Population median imputation was noninferior to complex approaches for imputing missing values in cardiovascular prediction models in clinical practice. J. Clin. Epidemiol. 2022, 145, 70–80. [Google Scholar] [CrossRef] [PubMed]
  28. Vazifehdan, M.; Moattar, M.H.; Jalali, M. A Hybrid Bayesian Network and Tensor Factorization Approach for Missing Value Imputation to Improve Breast Cancer Recurrence Prediction. J. King Saud. Univ. Comput. Inf. Sci. 2019, 31, 175–184. [Google Scholar] [CrossRef]
  29. Schmitt, P.; Mandel, J.; Guedj, M. A comparison of six methods for missing dataimputation. J. Biom. Biostat. 2015, 6, 1. [Google Scholar] [CrossRef]
  30. Madan, L.Y.; Basav, R. Handling missing values: A study of popular imputation packages in R. Knowl.-Based Syst. 2018, 160, 104–118. [Google Scholar] [CrossRef]
  31. Gordana, I.; Tome, E.; Barbara, K.S. Evaluating missing value imputation methods for food composition databases. Food Chem. Toxicol. 2020, 141, 111368. [Google Scholar] [CrossRef]
  32. Cattram, D.N.; John, B.C.; Katherine, J.J. Practical strategies for handling breakdown of multiple imputation procedures. Emerg. Themes Epidemiol. 2021, 18, 5. [Google Scholar] [CrossRef]
  33. Jerez, J.M.; Molina, I.; García-Laencina, P.J.; Alba, E.; Ribelles, N.; Martín, M.; Franco, L. Missing Data Imputation Using Statistical and Machine Learning Methods in a Real Breast Cancer Proble. Artif. Intell. Med. 2010, 50, 105–115. [Google Scholar] [CrossRef] [PubMed]
  34. Joseph, P.B.Z.; David, J.B. Machine learning imputation of missing Mesonet temperature observations. Comput. Electron. Agric. 2022, 192, 106580. [Google Scholar] [CrossRef]
  35. Franco, B.M.; Hernández-Callejo, L.; Navas-Gracia, L.M. Virtual weather stations for meteorological data estimations. Neural Comput. Appl. 2020, 32, 12801–12812. [Google Scholar] [CrossRef]
  36. Taewon, M.; Seojung, H.; Jung, E.S. Interpolation of greenhouse environment data using multilayer perceptron. Comput. Electron. Agric. 2019, 166, 105023. [Google Scholar] [CrossRef]
  37. Jing, B.; Pei, Y.; An, J. Missing wind speed data reconstruction with improved context encoder network. Energy Rep. 2022, 8, 3386–3394. [Google Scholar] [CrossRef]
  38. Li, J.; Desen Zhu, D.; Li, C. Comparative analysis of BPNN, SVR, LSTM, Random Forest, and LSTM-SVR for conditional simulation of non-Gaussian measured fluctuating wind pressures. Mech. Syst. Signal Process. 2022, 178, 109285. [Google Scholar] [CrossRef]
  39. Samal, K.; Babu, K.S.; Das, S.K. Multi-directional temporal convolutional artificial neural network for PM2.5 forecasting with missing values: A deep learning approach. Urban Clim. 2021, 36, 100800. [Google Scholar] [CrossRef]
  40. Benedict, D.C.; John, W.; Georgios, L. Imputation of missing sub-hourly precipitation data in a large sensor network: A machine learning approach. J. Hydrol. 2020, 588, 125126. [Google Scholar] [CrossRef]
  41. Kottek, M.; Grieser, J.; Beck, C.; Rudolf, B.; Rubel, F. World Map of the Köppen-Geiger climate classification updated. Meteorol. Z. 2006, 15, 259–263. [Google Scholar] [CrossRef] [PubMed]
  42. Harry, K. Measures of Association: How to Choose? J. Diagn. Med. Sonogr. 2008, 24, 155–162. [Google Scholar] [CrossRef]
  43. Yagli, G.M.; Yang, D.; Srinivasan, D. Automatic hourly solar forecasting using machine learning models. Renew. Sustain. Energy Rev. 2019, 105, 487–498. [Google Scholar] [CrossRef]
  44. Ying, H.; Deng, C.; Xu, Z.; Huang, H.; Deng, W.; Yang, Q. Short-term prediction of wind power based on phase space reconstruction and BiLSTM. Energy Rep. 2023, 9, 474–482. [Google Scholar] [CrossRef]
  45. Sarker, I.H. Deep Learning: A Comprehensive Overview on Techniques, Taxonomy, Applications and Research Directions. SN Comput. Sci. 2021, 2, 420. [Google Scholar] [CrossRef]
  46. Sun, Y.; Li, J.; Xu, Y.; Zhang, T.; Wang, X. Deep learning versus conventional methods for missing data imputation:A review and comparative study. Expert Syst. Appl. 2023, 227, 120201. [Google Scholar] [CrossRef]
Figure 1. Map of climatic zoning site.
Figure 1. Map of climatic zoning site.
Algorithms 16 00422 g001
Figure 2. MMDIF flowchart.
Figure 2. MMDIF flowchart.
Algorithms 16 00422 g002
Figure 3. Distribution of the imputation results of RF.
Figure 3. Distribution of the imputation results of RF.
Algorithms 16 00422 g003
Figure 4. The degree of decline in imputation accuracy of each algorithm when the missing rate increases from 10% to 80%.
Figure 4. The degree of decline in imputation accuracy of each algorithm when the missing rate increases from 10% to 80%.
Algorithms 16 00422 g004
Figure 5. Best imputation methods for each climate category and their statistics (based on R2).
Figure 5. Best imputation methods for each climate category and their statistics (based on R2).
Algorithms 16 00422 g005
Figure 6. Best imputation methods for each climate category and their statistics (based on SMAPE).
Figure 6. Best imputation methods for each climate category and their statistics (based on SMAPE).
Algorithms 16 00422 g006
Figure 7. Performance of each algorithm in different climate types.
Figure 7. Performance of each algorithm in different climate types.
Algorithms 16 00422 g007
Figure 8. The best and worst imputation results at the 2008 meteorological observation site.
Figure 8. The best and worst imputation results at the 2008 meteorological observation site.
Algorithms 16 00422 g008
Table 1. Typical machine-learning regression method.
Table 1. Typical machine-learning regression method.
MethodShort Description
Linear regressionMultivariate linear regression (MLR), ridge regression (Ridge), lasso regression (Lasso), and ElasticNet regression (ENet). These methods are used to establish the relationship between independent and dependent variables by fitting the data through minimizing the sum of squared residuals. The difference between these four methods is that they improve the generalization ability of the model by adding different types of regularization terms.
Probability-basedBayesian ridge regression (BR) and automatic relevance determination regression (ARD) are based on Bayesian linear regression. ARD is a linear regression model that is solved using Bayesian inference in statistics, assuming that the prior distribution of the regression coefficients is an elliptical Gaussian distribution parallel to the coordinate axis, whereas BR assumes that the prior distribution of the regression coefficients is a spherical normal distribution.
Instance-basedK-nearest neighbor (KNN). For a given test sample, based on the distance metric, find the K-closest training samples in the training set, and then make predictions based on the information of these K “neighbors”.
Tree-basedDecision tree regression (DTR), random forest (RF), adaptive boosting algorithm (AdaBoost), gradient boosting decision tree (GBDT), extremely randomized tree (ERT), bootstrap aggregating (Bagging). DTR is a simple regression algorithm, whereas Bagging, RF, AdaBoost, GBDT, and ERT are ensemble learning algorithms based on decision trees. They improve prediction performance by using different methods to construct and combine decision trees.
Kernel-basedSupport vector regression (SVR) uses kernel functions to transform data into higher-dimensional space to simulate nonlinearity.
Neural nework-basedPerceptron, multilayer perceptron neural networks (MLP), recurrent neural networks (RNN), long short-term memory networks (LSTM), bidirectional LSTM networks (BiLSTM), and temporal convolutional networks (TCN) are based on the perceptron, but with differing structures and functions. For example, MLP is a feedforward neural network, and RNN, LSTM, and BiLSTM can all handle sequence data. On the other hand, TCN uses convolution to handle sequence data.
Table 2. The imputation accuracy of various algorithms under different missing rates.
Table 2. The imputation accuracy of various algorithms under different missing rates.
MethodMissing Rate (R2|SMAPE)
10% 20% 40%60%80%
AdaBoost0.84|9.170.81|9.900.73|11.510.65|13.070.57|14.54
Perceptron0.90|6.140.87|6.950.82|8.460.75|9.970.68|11.57
ARD0.87|7.490.84|8.330.78|9.750.71|11.210.63|12.89
Bagging0.91|5.050.89|5.570.84|6.600.79|7.900.72|9.48
BR0.87|7.480.84|8.330.78|9.750.71|11.220.63|12.89
BiLSTM0.91|5.420.89|6.170.84|7.520.77|9.100.70|10.80
MLP0.90|6.160.87|6.970.81|8.460.75|9.980.68|11.59
DTR0.85|7.800.81|8.620.74|9.990.65|11.480.53|13.02
ENet0.87|7.620.84|8.460.78|9.820.71|11.260.63|12.83
ERT0.84|5.980.80|6.700.73|8.110.64|9.750.51|11.56
GBDT0.90|5.970.87|6.700.82|8.070.77|9.430.70|10.85
KNN0.89|6.710.86|7.530.80|8.820.75|10.080.67|11.42
Lasso0.87|7.620.84|8.460.78|9.820.71|11.260.63|12.83
MLR0.88|7.460.84|8.320.78|9.740.71|11.210.63|12.89
LSTM0.90|5.800.88|6.470.82|7.920.76|9.550.68|11.21
RF0.92|4.900.90|5.390.86|6.360.81|7.590.74|9.13
Ridge0.87|7.470.84|8.330.78|9.750.71|11.230.63|12.90
RNN0.90|6.310.87|7.140.81|8.620.75|10.160.67|11.76
SVR0.90|6.670.88|7.170.83|8.360.77|9.760.69|11.32
TCN0.86|7.510.86|7.560.84|8.130.82|9.100.76|10.23
Table 3. The best and worst imputation methods for each meteorological observation element.
Table 3. The best and worst imputation methods for each meteorological observation element.
ElementsRMSEMAER2SMAPE
TOBSRF1.61 °CRF0.93 °CRF0.96RF5.51
AdaBoost3.51 °CAdaBoost2.64 °CEnet0.78AdaBoost11.71
TMINRF1.73 °CRF1.04 °CRF0.96RF6.62
AdaBoost3.50 °CAdaBoost2.62 °CAdaBoost0.87AdaBoost12.38
TMAXRF1.64 °CRF0.89 °CRF0.96RF5.25
AdaBoost3.10 °CAdaBoost2.26 °CAdaBoost0.89AdaBoost10.74
WSPDXRF2.95 MphRF2.09 MphTCN0.66RF6.47
ERT4.10 MphAdaBoost3.01 MphERT0.29AdaBoost11.5
WSPDVRF1.88 MphRF1.32 MphTCN0.64RF7.21
ERT2.62 MphERT1.83 MphERT0.28AdaBoost12.86
SRADVRF194.76 W/m2RF155.79 W/m2RF0.48RF15.53
ERT278.71 W/m2ERT213.15 W/m2ERT0.07ERT17.97
DPTPRF2.09 °CRF0.75 °CRF0.94RF12.47
SVR7.13 °CSVR5.75 °CAdaBoost0.75AdaBoost19.14
PVPVRF0.25 KPaRF0.09 KPaRF0.93RF4.38
TCN0.66 KPaSVR0.46 KPaEnet0.50BR6.43
RHUMRF5.03%RF2.99%RF0.93RF3.73
AdaBoost8.61%AdaBoost6.41%Enet0.82AdaBoost8.46
RHUMNRF5.66%RF2.89%RF0.92RF2.68
AdaBoost10.18%AdaBoost7.21%Enet0.75AdaBoost9.01
RHUMXRF5.34%RF3.27%RF0.92RF2.75
AdaBoost9.45%AdaBoost7.24%Enet0.76AdaBoost8.72
Table 4. The training time of each algorithm.
Table 4. The training time of each algorithm.
MethodDuration(s)
Missing Rate
10%
Missing Rate
20%
Missing Rate
40%
Missing Rate
60%
Missing Rate
80%
Average
Duration
MLR0.3950.3960.4210.4050.3310.389
Ridge167.428153.703141.661117.06590.136133.999
Lasso153.925146.388143.651127.361106.294135.524
Enet153.351147.633144.169127.264107.077135.899
BR273.696265.083261.950230.349193.824244.980
ARD382.077380.746404.102377.901322.452373.456
KNN1.8442.5083.8464.3734.3773.390
DTR0.9690.9230.8840.7710.6360.837
RF70.14167.15864.98755.35145.50860.629
AdaBoost2.0902.7303.8674.1553.4603.260
GBDT21.04019.39118.61816.15012.62217.564
ERT0.5760.5740.6140.5560.4710.558
Bagging8.8368.5978.6327.5996.2777.988
SVR43.25544.39046.88338.06727.51940.023
Perceptron127.659116.002107.11293.16378.459104.479
MLP145.523131.159119.722104.00089.925118.066
RNN432.557382.919349.538281.223231.763335.600
LSTM1235.1621195.4491025.659781.857609.432969.512
BiLSTM1856.8161683.7211472.8771139.001909.9461412.472
TCN446.149423.100394.256345.127299.772381.681
Table 5. Comparison of the results of the two studies (°C).
Table 5. Comparison of the results of the two studies (°C).
Observation ElementsJoseph’s ResearchMMDIF-RF
RMSEMAERMSEMAE
TBOS0.630.430.610.35
TMAX0.720.530.680.34
TMIN0.920.700.770.48
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

Share and Cite

MDPI and ACS Style

Li, C.; Ren, X.; Zhao, G. Machine-Learning-Based Imputation Method for Filling Missing Values in Ground Meteorological Observation Data. Algorithms 2023, 16, 422. https://doi.org/10.3390/a16090422

AMA Style

Li C, Ren X, Zhao G. Machine-Learning-Based Imputation Method for Filling Missing Values in Ground Meteorological Observation Data. Algorithms. 2023; 16(9):422. https://doi.org/10.3390/a16090422

Chicago/Turabian Style

Li, Cong, Xupeng Ren, and Guohui Zhao. 2023. "Machine-Learning-Based Imputation Method for Filling Missing Values in Ground Meteorological Observation Data" Algorithms 16, no. 9: 422. https://doi.org/10.3390/a16090422

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop