Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

r package KernSmooth copyright

Tags:

r

I am new to R. Was able to install a package called KernSmooth using R console. Is there a place where I can figure out the copyright info for KernSmooth? Below is what I did.

> install.packages("KernSmooth")
--- Please select a CRAN mirror for use in this session ---
trying URL 'http://mirrors.nics.utk.edu/cran/bin/macosx/mavericks/contrib/3.1/KernSmooth_2.23-12.tgz'
Content type 'application/x-gzip' length 91267 bytes (89 Kb)
opened URL
==================================================
downloaded 89 Kb

The downloaded binary packages are in
    /var/folders/yd/y63jsdgn2sx1jf9b7vl7ksqc0000gn/T//RtmpE1vO1I/downloaded_packages
like image 619
user3621202 Avatar asked May 11 '14 15:05

user3621202


People also ask

What is the main repository for R packages?

You can find thousands of R packages online. The two biggest sources of packages are CRAN (Comprehensive R Archive Network) and Bioconductor, but some packages are available elsewhere.


1 Answers

If you just want to view the copyright, after you install the package, do a library() call

> library(KernSmooth)
KernSmooth 2.23 loaded
Copyright M. P. Wand 1997-2009

video explanation (if needed)

like image 168
daneshjai Avatar answered Oct 02 '22 19:10

daneshjai