-
Notifications
You must be signed in to change notification settings - Fork 3
/
DESCRIPTION
55 lines (55 loc) · 2.13 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
Package: imputeFin
Title: Imputation of Financial Time Series with Missing Values and/or Outliers
Version: 0.1.2.9000
Date: 2021-02-19
Description: Missing values often occur in financial data due to a variety
of reasons (errors in the collection process or in the processing stage,
lack of asset liquidity, lack of reporting of funds, etc.). However,
most data analysis methods expect complete data and cannot be employed
with missing values. One convenient way to deal with this issue without
having to redesign the data analysis method is to impute the missing
values. This package provides an efficient way to impute the missing
values based on modeling the time series with a random walk or an
autoregressive (AR) model, convenient to model log-prices and log-volumes
in financial data. In the current version, the imputation is
univariate-based (so no asset correlation is used). In addition,
outliers can be detected and removed.
The package is based on the paper:
J. Liu, S. Kumar, and D. P. Palomar (2019). Parameter Estimation of
Heavy-Tailed AR Model With Missing Data Via Stochastic EM. IEEE Trans. on
Signal Processing, vol. 67, no. 8, pp. 2159-2172. <doi:10.1109/TSP.2019.2899816>.
Authors@R: c(
person(c("Daniel", "P."), "Palomar", role = c("cre", "aut"), email = "[email protected]"),
person("Junyan", "Liu", role = "aut", email = "[email protected]"),
person("Rui", "Zhou", role = "aut", email = "[email protected]")
)
Maintainer: Daniel P. Palomar <[email protected]>
URL: https://CRAN.R-project.org/package=imputeFin,
https://github.com/dppalomar/imputeFin,
https://www.danielppalomar.com,
https://doi.org/10.1109/TSP.2019.2899816,
https://doi.org/10.1109/TSP.2020.3033378
BugReports: https://github.com/dppalomar/imputeFin/issues
License: GPL-3
Encoding: UTF-8
LazyData: true
RoxygenNote: 7.1.1
Depends: R (>= 2.10)
Imports:
MASS,
zoo,
mvtnorm,
magrittr,
parallel
Suggests:
knitr,
ggplot2,
prettydoc,
rmarkdown,
R.rsp,
testthat,
xts
VignetteBuilder:
knitr,
rmarkdown,
R.rsp