-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.Rmd
57 lines (40 loc) · 2.21 KB
/
README.Rmd
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
56
57
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
# classiFunc
[![Travis-CI Build Status](https://api.travis-ci.org/maierhofert/classiFunc.svg?branch=master)](https://travis-ci.org/maierhofert/classiFunc)
[![packageversion](https://img.shields.io/badge/Package%20version-0.1.1-orange.svg?style=flat-square)](https://CRAN.R-project.org/package=classiFunc)
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/classiFunc)](https://cran.r-project.org/package=classiFunc)
[![](https://cranlogs.r-pkg.org/badges/classiFunc)](https://cran.r-project.org/package=classiFunc)
[![Licence](https://img.shields.io/badge/licence-GPL--3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.en.html)
## Overview
The classiFunc package implements methods for functional data classification. The main functions of this package are classiKnn, a k nearest neighbor estimator for functional data, and classiKernel, a kernel estimator for functional data. The package uses efficiently implemented semimetrics to create the distance matrix of the functional observations in the function computeDistMat.
## Using classiFunc
For installation instructions, see below.
A hands on introduction to \code{classiFunc} can be found in the [vignette](https://cran.r-project.org/package=classiFunc/vignettes/classiFunc.html).
Details on specific functions are in the [reference manual](https://cran.r-project.org/package=classiFunc/classiFunc.pdf).
## Issues & Feature Requests
For issues, bugs, feature requests etc. please use the [Github Issues](https://github.com/maierhofert/classiFunc/issues). Input is always welcome.
## Installation
You can install the current classiFunc version from CRAN with:
```{r cran-installation, eval = FALSE}
install.packages("classiFunc")
```
or the latest patched version from Github with:
```{r gh-installation, eval = FALSE}
# install.packages("devtools")
devtools::install_github("maierhofert/classiFunc")
```
<!-- ## Example -->
<!-- This is a basic example which shows you how to solve a common problem: -->
<!-- ```{r example} -->
<!-- ## basic example code -->
<!-- ``` -->