r包KernSmooth版权所有

时间:2014-05-11 15:10:52

标签: r

我是R.的新手。能够使用R控制台安装一个名为KernSmooth的软件包。有没有可以找出KernSmooth版权信息的地方?以下是我的所作所为。

> 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

4 个答案:

答案 0 :(得分:41)

如果您只想查看版权,请在安装软件包后进行库()调用

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

video explanation(如果需要)

答案 1 :(得分:1)

如果您安装并加载R软件包 - KernSmooth,您将收到以下版权信息:

Copyright M. P. Wand 1997-2009.
More information can be found out here : https://launchpad.net/ubuntu/precise/+source/kernsmooth/+copyright

答案 2 :(得分:1)

Coursera中的这个问题被要求带回家一点,即在R中使用包装,仅仅安装包装是不够的。你也需要加载它。这可以通过在R控制台中使用库( package )命令或通过选中R studio中的包来完成。版权信息仅在加载包后显示。

答案 3 :(得分:-1)

您还可以使用以下命令:

require(KernSmooth)

运行后,您会看到以下消息:

Loading required package: KernSmooth
KernSmooth 2.23 loaded
Copyright M. P. Wand 1997-2009