ErikvanderWerff/crvftw_eiv
Polynomial EIV regression
crvftw_eiv 
Polynomial EIV regression
Overview
1.Regression based on multivariate probability density function (pdf) without auto-correlated input variables
With:
and
2.Error-in-both-variables polynomial regression procedure (Deming regression)
Installation
Install R
To use this R package from GitHub, the user needs to install R at first. R is the core programming language and environment required to run and install any R package. It must be installed on the user's system.
Install R on Windows
- Go to the R Project website.
- Click on Download R for Windows.
- Click on install R for the first time.
- Click Download R for Windows. Open the downloaded file.
- Select the language you would like to use during the installation. Then click OK.
- Click Next.
- Select where you would like R to be installed. It will default to your Program Files on your C Drive. Click Next.
- You can then choose which installation you would like. If your computer is a 64-bit, you can choose the 64-bit User Installation. Then click Next.
- Then specify if you want to customized your startup or just use the defaults. Then click Next.
- Then you can choose the folder that you want R to be saved within or the default if the R folder that was created. Once you have finished, click Next.
- You can then select additional shortcuts if you would like. Click Next.
- Click Finish
Install R on Linux
- Go to the R Project website.
- Click on Download R for Linux.
- Click on one of the following links according to your operating system
- Follow the installation guide to install R.
- Open R Console by typing R on your console
- Run the following commmand to confirm the installation of R:
version
Install R on Mac
-
Go to the R Project website.
-
Click on [Download R for macOS]([https://cran.r-project.org/bin/macosx/]
-
Download the latest version of R for macOS and open the
.pkgfile. -
Follow the installation instructions.
-
Open R Console by typing R on your console
-
Run the following commmand to confirm the installation of R:
version
Install RStudio
While RStudio is not mandatory, it is a popular integrated development environment (IDE) for R. It provides a more user-friendly interface for coding, debugging, and managing R projects. If the user prefers working with a GUI, RStudio can make the process easier.
Install RStudio on Windows
- Visit the RStudio website.
- Download the RStudio Desktop Installer for Windows.
- Run the installer and follow the on-screen instructions.
Install RStudio on Linux
- Visit the RStudio download website.
- Download the RStudio
.debor.rpmpackage according to your operating system and version - Install the package
Install RStudio on Mac
- Visit the RStudio download website.
- Download the RStudio
.dmgpackage according to your MacOS version - Install the package
Install APPAC
The user can install a GitHub package directly in R using tools like devtools.
If RStudio is used, the same commands can be run in its console. However, the installation process itself relies only on R.
# Install devtools if not already installed
install.packages("devtools")
# Use devtools to install the package from GitHub
devtools::install_github("ErikvanderWerff/crvftw_eiv")