0

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

neilfws
  • 32,751
  • 5
  • 50
  • 63
Samira
  • 3
  • 3
  • Does this answer your question? [Error: "there is no package called ..." and trying to use install.packages to solve it](https://stackoverflow.com/questions/47395807/error-there-is-no-package-called-and-trying-to-use-install-packages-to-so) – Werner Hertzog May 27 '23 at 11:19
  • Are you sure that it installed correctly? Did you get any messages / warnings / errors at all when installing? – user20650 May 27 '23 at 13:16
  • 1
    I have been able to install the R package with : install.packages("rqpd", repos="http://R-Forge.R-project.org") You can also perform a quantile regression with the quantreg R package : install.packages("quantreg", repos="http://R-Forge.R-project.org") – Emmanuel Hamel May 28 '23 at 11:33
  • Which version of R are you using? – Emmanuel Hamel May 28 '23 at 11:34

1 Answers1

0

http://download.r-forge.r-project.org/src/contrib/rqpd_0.6.tar.gz

Tar file is available on the link above. You can install the package manually from R.

  • As it’s currently written, your answer is unclear. Please [edit] to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Aug 30 '23 at 10:09