i am doing a Quantile regression project. i have the R codes. i needed to install rqpd package for that. I find this code for installing the package :
install.packages("rqpd", repos="http://R-Forge.R-project.org")
it installed but after that when I want to load the package it gives me this error :
Error in library(rqpd) : there is no package called ‘rqpd’
Should i load that after installing like other R packages? Could you please help me ? Thank you in advance
Installing it directly with the code is not possible.
First, you must download the package from the following link.
http://download.r-forge.r-project.org/src/contrib/rqpd_0.6.tar.gz
Run the following command when you have the file in your working directory.
install.packages("/workdir/rqpd_0.6.tar.gz")