[IPSUR-commits] r83 - in www: . book rcmdrplugin
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Thu Dec 24 18:05:21 CET 2009
Author: gkerns
Date: 2009-12-24 18:05:21 +0100 (Thu, 24 Dec 2009)
New Revision: 83
Added:
www/IPSURtitle3.png
www/IPSURtitlePlugin.png
www/book/
www/book/installation.php
www/index.htm
www/rcmdrplugin/
www/rcmdrplugin/installation.php
www/rcmdrplugin/replisting
Log:
new website stuff
Added: www/IPSURtitle3.png
===================================================================
(Binary files differ)
Property changes on: www/IPSURtitle3.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: www/IPSURtitlePlugin.png
===================================================================
(Binary files differ)
Property changes on: www/IPSURtitlePlugin.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: www/book/installation.php
===================================================================
--- www/book/installation.php (rev 0)
+++ www/book/installation.php 2009-12-24 17:05:21 UTC (rev 83)
@@ -0,0 +1,146 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+ <title>IPSUR Project</title>
+ <link rel="Shortcut Icon" href="favicon.ico"><style type="text/css">
+ <!--
+ @import url("main.css");
+ body {
+ background-image: url();
+ }
+ -->
+ </style>
+</head>
+
+<body>
+ <div align="center">
+
+ <table width="700" height="100%" border="0" cellpadding="0" cellspacing="0">
+ <tr>
+ <td align="left" valign="top" bgcolor="#FFFFFF">
+ <!-- All of the page content is in this table-->
+
+<!--BEGIN: Page Banner-->
+<?php
+ include "banner.php";
+?>
+<!--END: Page Banner-->
+
+<!--BEGIN: Top Menu-->
+<?php
+ include "topMenu.php";
+?>
+<!--END: Top Menu-->
+
+<!--BEGIN: Page Content-->
+<p class="articleTitle">Quick Download and Installation Instructions</p>
+<blockquote>
+
+<div id="list">
+ <ol type="1">
+ <li>
+ <strong>Download the latest version of <span class="name">R</span></strong>: click the link
+ below to download the latest version of R for your operating system from CRAN:
+
+ <div align="center">
+ <br />
+ Windows -
+ <a href="http://cran.r-project.org/bin/windows/base/">
+ http://cran.r-project.org/bin/windows/base/
+ </a>
+ <br />
+ MacOS X -
+ <a href="http://cran.r-project.org/bin/macosx/">
+ http://cran.r-project.org/bin/macosx/
+ </a>
+ <br />
+ Linux -
+ <a href="http://cran.r-project.org/bin/linux/">
+ http://cran.r-project/bin/linux
+ </a>
+ </div>
+
+ <ul>
+ <br />
+
+ <li>
+ <strong>Windows Installation Tip for <span class="name">R</span></strong>: click the
+ .exe program file to start installation. When it asks for "Customized startup options",
+ specify Yes. In the next window, be sure to select the SDI (single-window) option.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <strong>Installing the <span class="name">RcmdrPlugin.IPSUR</span> package</strong>: there are several methods for installing IPSUR:
+ <br />
+ <br />
+ <ul>
+ <li>
+ <strong>Install from CRAN:</strong> This method works well with Windows and MacOS X installations and insures that you have the latest stable version of the package. To install directly from CRAN, launch R and type the following at the command prompt ">":
+ <br />
+ <br />
+
+ <div align="center">
+
+ <br />
+
+ <span class="name">install.packages("RcmdrPlugin.IPSUR", repos="http://cran.r-project.org", dep=TRUE)</span>
+
+ </div>
+ </li>
+ <li>
+ <strong>Install from download:</strong> Downloads of the binary packages are available for Windows and MacOS X. The packages, along with specific instructions for installing them on various platforms are available on the <a href="downloads.php">downloads page</a>.
+ </li>
+ <li>
+ <strong>Install from package source:</strong> This method of installation is recommended for all linux operating systems and all other non-supported systems. To install the current released version of the source, type the following at the command prompt ">":
+ <div class="name" align="center">
+
+ <br />
+ install.packages("RcmdrPlugin.IPSUR", repos = "http://www.cran.r-project.org", type="source")
+ </div>
+
+ <p>
+ (<strong>note</strong>: you must have the correct compilation tools installed)
+ </p>
+ <p>
+ Instructions to install from a downloaded copy of the IPSUR source are available on the <a href="downloads.php">downloads page</a>.
+ </p>
+ </li>
+ </ul>
+ </li>
+ <li>
+ <strong>Loading the RcmdrPlugin.IPSUR package: </strong>Once IPSUR is downloaded and installed, it
+ must be loaded into R. To do this type the following at the command prompt ">":
+
+ <div class="name" align="center">
+
+ <br />
+ library(RcmdrPlugin.IPSUR)
+ </div>
+ </li>
+ <li>
+ <strong></strong><strong>Installing the Dependencies:</strong> When <span class="name">Rcmdr</span> loads it will ask
+ you to download a bunch of additional packages. Once this procedure is finished, you will be almost
+ ready to go. For more detailed instructions on installing and configuring R and IPSUR you should
+ next consult the<a href="pdf/Install.pdf"> Installing R and IPSUR</a> document.
+ </li>
+ </ol>
+</div>
+
+</blockquote>
+<!--END: Page Content-->
+
+<!--BEGIN: Footer-->
+ <p align="center">
+ R logo © the R Foundation, <font face="Courier New"><a href="http://www.r-project.org" style="text-decoration: none"><span style="text-decoration: none">http://www.r-project.org</span></a></font>
+ </p>
+<!--END: Footer-->
+
+ <!--Close main table-->
+ </td>
+ </tr>
+</table>
+</div>
+</body>
+</html>
Added: www/index.htm
===================================================================
--- www/index.htm (rev 0)
+++ www/index.htm 2009-12-24 17:05:21 UTC (rev 83)
@@ -0,0 +1,62 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+<title>The IPSUR Project</title>
+<link rel="Shortcut Icon" href="favicon.ico">
+<meta name="generator" content="Bluefish 1.0.7">
+<meta name="author" content="G. Jay Kerns">
+<meta name="date" content="2009-12-24T11:59:37-0500">
+<meta name="copyright" content="">
+<meta name="keywords" content="">
+<meta name="description" content="">
+<meta name="ROBOTS" content="NOINDEX, NOFOLLOW">
+<meta http-equiv="content-type" content="text/html; charset=UTF-8">
+<meta http-equiv="content-type" content="application/xhtml+xml; charset=UTF-8">
+<meta http-equiv="content-style-type" content="text/css">
+<meta http-equiv="expires" content="0">
+<meta http-equiv="refresh" content="5; URL=http://">
+</head>
+<body>
+
+<table align="center" valign="middle">
+<tr>
+<td width="700" height="100"></td>
+</tr>
+<tr>
+<td width="700" height="100">
+<a href="book/index.php">
+<img src="IPSURtitle3.png" height="100" width="700" alt="Introduction to Probability and Statistics Using R" />
+</a>
+</td>
+</tr>
+<tr>
+<td width="700" height="100"></td>
+</tr>
+<tr>
+<td>
+<a href="rcmdrplugin/index.php">
+<img src="IPSURtitlePlugin.png" height="100" width="700" alt="RcmdrPlugin.IPSUR" />
+</a>
+</td>
+</tr>
+<tr>
+<td></td>
+</tr>
+</table>
+
+
+<br>
+<br>
+
+
+
+
+
+<br>
+<br>
+
+
+
+
+</body>
+</html>
\ No newline at end of file
Added: www/rcmdrplugin/installation.php
===================================================================
--- www/rcmdrplugin/installation.php (rev 0)
+++ www/rcmdrplugin/installation.php 2009-12-24 17:05:21 UTC (rev 83)
@@ -0,0 +1,146 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+ <title>IPSUR Project</title>
+ <link rel="Shortcut Icon" href="favicon.ico"><style type="text/css">
+ <!--
+ @import url("main.css");
+ body {
+ background-image: url();
+ }
+ -->
+ </style>
+</head>
+
+<body>
+ <div align="center">
+
+ <table width="700" height="100%" border="0" cellpadding="0" cellspacing="0">
+ <tr>
+ <td align="left" valign="top" bgcolor="#FFFFFF">
+ <!-- All of the page content is in this table-->
+
+<!--BEGIN: Page Banner-->
+<?php
+ include "banner.php";
+?>
+<!--END: Page Banner-->
+
+<!--BEGIN: Top Menu-->
+<?php
+ include "topMenu.php";
+?>
+<!--END: Top Menu-->
+
+<!--BEGIN: Page Content-->
+<p class="articleTitle">Quick Download and Installation Instructions</p>
+<blockquote>
+
+<div id="list">
+ <ol type="1">
+ <li>
+ <strong>Download the latest version of <span class="name">R</span></strong>: click the link
+ below to download the latest version of R for your operating system from CRAN:
+
+ <div align="center">
+ <br />
+ Windows -
+ <a href="http://cran.r-project.org/bin/windows/base/">
+ http://cran.r-project.org/bin/windows/base/
+ </a>
+ <br />
+ MacOS X -
+ <a href="http://cran.r-project.org/bin/macosx/">
+ http://cran.r-project.org/bin/macosx/
+ </a>
+ <br />
+ Linux -
+ <a href="http://cran.r-project.org/bin/linux/">
+ http://cran.r-project/bin/linux
+ </a>
+ </div>
+
+ <ul>
+ <br />
+
+ <li>
+ <strong>Windows Installation Tip for <span class="name">R</span></strong>: click the
+ .exe program file to start installation. When it asks for "Customized startup options",
+ specify Yes. In the next window, be sure to select the SDI (single-window) option.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <strong>Installing the <span class="name">RcmdrPlugin.IPSUR</span> package</strong>: there are several methods for installing IPSUR:
+ <br />
+ <br />
+ <ul>
+ <li>
+ <strong>Install from CRAN:</strong> This method works well with Windows and MacOS X installations and insures that you have the latest stable version of the package. To install directly from CRAN, launch R and type the following at the command prompt ">":
+ <br />
+ <br />
+
+ <div align="center">
+
+ <br />
+
+ <span class="name">install.packages("RcmdrPlugin.IPSUR", repos="http://cran.r-project.org", dep=TRUE)</span>
+
+ </div>
+ </li>
+ <li>
+ <strong>Install from download:</strong> Downloads of the binary packages are available for Windows and MacOS X. The packages, along with specific instructions for installing them on various platforms are available on the <a href="downloads.php">downloads page</a>.
+ </li>
+ <li>
+ <strong>Install from package source:</strong> This method of installation is recommended for all linux operating systems and all other non-supported systems. To install the current released version of the source, type the following at the command prompt ">":
+ <div class="name" align="center">
+
+ <br />
+ install.packages("RcmdrPlugin.IPSUR", repos = "http://www.cran.r-project.org", type="source")
+ </div>
+
+ <p>
+ (<strong>note</strong>: you must have the correct compilation tools installed)
+ </p>
+ <p>
+ Instructions to install from a downloaded copy of the IPSUR source are available on the <a href="downloads.php">downloads page</a>.
+ </p>
+ </li>
+ </ul>
+ </li>
+ <li>
+ <strong>Loading the RcmdrPlugin.IPSUR package: </strong>Once IPSUR is downloaded and installed, it
+ must be loaded into R. To do this type the following at the command prompt ">":
+
+ <div class="name" align="center">
+
+ <br />
+ library(RcmdrPlugin.IPSUR)
+ </div>
+ </li>
+ <li>
+ <strong></strong><strong>Installing the Dependencies:</strong> When <span class="name">Rcmdr</span> loads it will ask
+ you to download a bunch of additional packages. Once this procedure is finished, you will be almost
+ ready to go. For more detailed instructions on installing and configuring R and IPSUR you should
+ next consult the<a href="pdf/Install.pdf"> Installing R and IPSUR</a> document.
+ </li>
+ </ol>
+</div>
+
+</blockquote>
+<!--END: Page Content-->
+
+<!--BEGIN: Footer-->
+ <p align="center">
+ R logo © the R Foundation, <font face="Courier New"><a href="http://www.r-project.org" style="text-decoration: none"><span style="text-decoration: none">http://www.r-project.org</span></a></font>
+ </p>
+<!--END: Footer-->
+
+ <!--Close main table-->
+ </td>
+ </tr>
+</table>
+</div>
+</body>
+</html>
Added: www/rcmdrplugin/replisting
===================================================================
--- www/rcmdrplugin/replisting (rev 0)
+++ www/rcmdrplugin/replisting 2009-12-24 17:05:21 UTC (rev 83)
@@ -0,0 +1,6 @@
+repname: IPSUR Repository
+reptype: package
+repaddrBase: http://www.cc.ysu.edu/~gjkerns/IPSUR/package
+repaddrPath: newRepos
+reprellevel: release
+
More information about the IPSUR-commits
mailing list