rinstallationdependenciesrjson

What are "reverse dependencies" in R?


I have to install the rjson package in R and looking at the CRAN page that deals with the package I saw that rjson has different dependencies:

What is the difference among them and do I have to install all of them to use the rjson package?


Solution

  • These are reverse dependencies, that is these packages depend on rjson. You do not have to install these in order to use rjson.

    Looking at the DESCRIPTION file (this is where the dependencies are stated) you see only:

    Depends: R (>= 3.1.0)
    

    So rjson package needs only R newer or equal than 3.1.0 to run.