knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

missInfo

R-CMD-check codecov License CRAN

missInfo package is used to detect daily meteorological station data missing information and interpolate missing values.


Tasklist:

Installation

You can install the released version of missInfo from github with:

devtools::install_github("kongdd/missInfo")

Example

This is a basic example which shows you how to solve a common problem:

library(missInfo)
## basic example code
data("prcp")
data("st840")
r <- interp_main(prcp, st840, smax = 200, verbose = FALSE)

气象要素特征值说明 (Illustration of meteorological flags):

| flag | Description | | ---- | -------------------- | |32700 | 表示降水"微量" (0.1mm) | |32XXX | XXX为纯雾露霜 | |31XXX | XXX为雨和雪的总量 | |30XXX | XXX为雪量(仅包括雨夹雪,雪暴) |

| flag | Description | | ---- | -------------------- | | 0 | 数据正确 | | 1 | 数据可疑 | | 2 | 数据错误 | | 8 | 数据缺测或无观测任务 | | 9 | 数据未进行质量控制 |

References

[1] Dongdong Kong, R package: missing information detect and interpolate, missInfo version 0.1.1, https://github.com/kongdd/missInfo

Acknowledgements

Keep in mind that this repository is released under a GPL-3 license, which permits commercial use but requires that the source code (of derivatives) is always open even if hosted as a web service.



kongdd/MissInfo documentation built on Jan. 14, 2024, 2:22 a.m.