[Archetypes-commits] r58 - www

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Mon May 7 14:16:07 CEST 2012


Author: manuel
Date: 2012-05-07 14:16:06 +0200 (Mon, 07 May 2012)
New Revision: 58

Added:
   www/skel.png
   www/toy-adata.png
   www/toy-atypes.png
Modified:
   www/index.html
   www/mjaepkg.css
Log:
www.

Modified: www/index.html
===================================================================
--- www/index.html	2012-05-02 20:28:30 UTC (rev 57)
+++ www/index.html	2012-05-07 12:16:06 UTC (rev 58)
@@ -14,8 +14,6 @@
   <h1>Archetypal Analysis</h1>
   <div id="h1sub">R package <tt>archetypes</tt></div>
 
-  <p class="header"></p>
-
   <p>
     The <a href="http://www.merriam-webster.com/dictionary/archetype">Merriam-Webster
     Online Dictionary</a> defines an archetyp as the original pattern
@@ -30,41 +28,75 @@
     represented as convex mixtures of the archetypes.
   </p>
 
+  <p class="header">
+    <img src="toy-atypes.png" />
+    <img src="toy-adata.png" />
+    <img src="skel.png" />
+  </p>
 
-  <h2>Demonstration</h2>
 
-  <h3>Introduction to the package</h3>
+  <h2>Usage</h2>
 
   <p>
-    The <a href="http://cran.r-project.org/web/packages/archetypes/vignettes/archetypes.pdf">vignette</a>
+    The <b>stable version</b> of <tt>archetypes</tt> is available
+    on <a href="http://cran.r-project.org/package=archetypes">CRAN</a>;
+    issue the following from within R to install and load it:
+    <blockquote>
+      <pre class="code">
+R> install.packages("archetypes")
+R> library("archetypes")</pre>
+    </blockquote>
+  </p>
+
+
+  <h2>Vignettes</h2>
+  
+  <p>
+    <b>From Spider-Man to Hero -- Archetypal Analysis in R:</b><br/>
+    This <a href="http://cran.r-project.org/web/packages/archetypes/vignettes/archetypes.pdf">vignette</a>
     (an updated version
     of <a href="http://www.jstatsoft.org/v30/i08">Eugster and Leisch,
     2009</a>) demonstrates the usage of the package:
-    <blockquote>
-      <pre>
+    <blockquote class="code"><pre>
 R> vignette("archetypes", package = "archetypes")
-R> edit(vignette("archetypes", package = "archetypes"))
-      </pre>
-    </blockquote>
+R> edit(vignette("archetypes", package = "archetypes"))</pre></blockquote>
   </p>
 
-  <h3></h3>
 
+  <h2>Demos</h2>
 
+  <p>
+    <b>robust-toy:</b> Weighted and robust archetypal analysis by
+    means of an artificial toy data set.
+    <blockquote class="code"><pre>
+R> demo("robust-toy", package = "archetypes")</pre></blockquote>
+  </p>
+  <p>
+    <b>robust-ozone:</b> Weighted and robust archetypal analysis by
+    means of the Ozone (mlbench) data set.
+    <blockquote class="code"><pre>
+R> demo("robust-ozone", package = "archetypes")</pre></blockquote>
+  </p>
+  <p>
+    <b>robust-simulation:</b> Simulation study of the robust
+    archetypal analysis.
+    <blockquote class="code"><pre>
+R> demo("robust-simulation", package = "archetypes")</pre></blockquote>
+  </p>
 
-  <h2>Download</h2>
 
+  <h2>See also</h2>
+
   <p>
-    The <b>stable version</b> of archetypes is available
-    on <a href="http://cran.r-project.org/package=archetypes">CRAN</a>;
-    issue the following from within R to install it:
-    <blockquote>
-    <pre>
-R> install.packages("archetypes")
-    </pre>
-    </blockquote>
+    For the application of archetypal analysis see demos in
+    the <a href="http://benchmark.r-forge.r-project.org/"><tt>benchmark</tt></a>
+    and <a href="http://soccer.r-forge.r-project.org/"><tt>SportsAnalytics</tt></a>
+    packages.
   </p>
 
+  
+  <h2>Development</h2>
+
   <p>
     The <b>development version</b> is available on
     <a href="https://r-forge.r-project.org/projects/archetypes/">R-Forge</a>.
@@ -75,6 +107,5 @@
     Created by <a href="http://www.statistik.lmu.de/~eugster"
     style="color: #C0C0C0">Manuel J. A. Eugster</a>, 2011.
   </p>
-
 </body>
 </html>

Modified: www/mjaepkg.css
===================================================================
--- www/mjaepkg.css	2012-05-02 20:28:30 UTC (rev 57)
+++ www/mjaepkg.css	2012-05-07 12:16:06 UTC (rev 58)
@@ -16,9 +16,16 @@
 
 .header {
     border-top: 1px solid #C0C0C0;
+    border-bottom: 1px solid #C0C0C0;
     color: #C0C0C0;
+    text-align: center;
 }
 
+.code {
+    background-color: WhiteSmoke;
+    font-size: 90%;
+}
+
 .menu {
     border-top: 1px solid #C0C0C0;
     border-bottom: 1px solid #C0C0C0;
@@ -33,12 +40,12 @@
 }
 
 pre {
-    font-family: 'andale mono', 'lucida console', monospace; 
+    font-family: 'andale mono', 'lucida console', monospace;
     font-size: 100%;
 }
 
 blockquote code {
-    font-family: 'andale mono', 'lucida console', monospace; 
+    font-family: 'andale mono', 'lucida console', monospace;
     font-size: 100%;
 }
 

Added: www/skel.png
===================================================================
(Binary files differ)


Property changes on: www/skel.png
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream
Added: svn:keywords
   + Date Revision Author URL Id

Added: www/toy-adata.png
===================================================================
(Binary files differ)


Property changes on: www/toy-adata.png
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream
Added: svn:keywords
   + Date Revision Author URL Id

Added: www/toy-atypes.png
===================================================================
(Binary files differ)


Property changes on: www/toy-atypes.png
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream
Added: svn:keywords
   + Date Revision Author URL Id



More information about the Archetypes-commits mailing list