ICSsmoothing

Library for data smoothing using interpolating splines

Basic usage examples

Load the library if installed.

library("ICSsmoothing")

The library consists one testing dataframe with two numeric columns x and y.

and five public functions

Building from source

Prerequisites

Depends on R packages

Installation

On Windows Windows run in R console (or RStudio)

install.packages("Rtools", force = TRUE)
library("Rtools")

On Linux (Ubuntu) install first these packages

sudo apt install libxml2-dev libssl-dev libcurl4-openssl-dev libopenblas-dev r-base r-base-dev

In both cases then run in R console

devtools::install_github("klutometis/roxygen", force = TRUE)
library(roxygen2)
install.packages("digest")
library(digest)
install.packages("polynom")
library(polynom)
install.packages("ggplot2")
library(ggplot2)

Open system terminal in the parent directory of the package and type

R CMD build ICSsmoothing
R CMD install ICSsmoothing_1.2.8.tar.gz

OR Open RStudio and install this library using top menu button Build->Install and Restart.