Changeset: 5a46c27b3a70 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=5a46c27b3a70
Modified Files:
        clients/R/monet.frame/DESCRIPTION
        clients/R/monet.frame/man/as.data.frame.Rd
        clients/R/monet.frame/man/as.list.Rd
        clients/R/monet.frame/man/mf.Rd
        clients/R/monet.frame/man/monet.frame.Rd
        clients/R/monet.frame/man/set.debug.Rd
Branch: default
Log Message:

R Connector: monet.frame updates for CRAN


diffs (107 lines):

diff --git a/clients/R/monet.frame/DESCRIPTION 
b/clients/R/monet.frame/DESCRIPTION
--- a/clients/R/monet.frame/DESCRIPTION
+++ b/clients/R/monet.frame/DESCRIPTION
@@ -1,6 +1,6 @@
 Package: monet.frame
 Version: 0.1
-Date: 2013-10-16
+Date: 2013-01-21
 Title: Connect MonetDB to R
 Authors@R: c(person("Hannes Muehleisen", role = c("aut", "cre"),email = 
"han...@cwi.nl"),
        person("Thomas Lumley", role = "ctb"),
diff --git a/clients/R/monet.frame/man/as.data.frame.Rd 
b/clients/R/monet.frame/man/as.data.frame.Rd
--- a/clients/R/monet.frame/man/as.data.frame.Rd
+++ b/clients/R/monet.frame/man/as.data.frame.Rd
@@ -20,7 +20,7 @@
 
 }
 \arguments{
-  \item{x}{A \code{\link[MonetDB.R]{monet.frame}} monet.frame virtual data 
object.}
+  \item{x}{A \code{\link[monet.frame]{monet.frame}} monet.frame virtual data 
object.}
    \item{row.names}{Unused.}
    \item{optional}{Unused.}
    \item{warnSize}{Prevent user from loading too many tuples from the DB. The 
limit is 
diff --git a/clients/R/monet.frame/man/as.list.Rd 
b/clients/R/monet.frame/man/as.list.Rd
--- a/clients/R/monet.frame/man/as.list.Rd
+++ b/clients/R/monet.frame/man/as.list.Rd
@@ -15,7 +15,7 @@
 
 }
 \arguments{
-  \item{x}{A \code{\link[MonetDB.R]{monet.frame}} monet.frame virtual data 
object.}
+  \item{x}{A \code{\link[monet.frame]{monet.frame}} monet.frame virtual data 
object.}
    \item{\dots}{Unused.}
  }
 \value{
diff --git a/clients/R/monet.frame/man/mf.Rd b/clients/R/monet.frame/man/mf.Rd
--- a/clients/R/monet.frame/man/mf.Rd
+++ b/clients/R/monet.frame/man/mf.Rd
@@ -28,7 +28,7 @@
 }
 
 \seealso{
-  \code{\link[MonetDB.R]{monet.frame}}
+  \code{\link[monet.frame]{monet.frame}}
 }
 \examples{
 \dontrun{
diff --git a/clients/R/monet.frame/man/monet.frame.Rd 
b/clients/R/monet.frame/man/monet.frame.Rd
--- a/clients/R/monet.frame/man/monet.frame.Rd
+++ b/clients/R/monet.frame/man/monet.frame.Rd
@@ -26,7 +26,7 @@
   \code{monet.frame} wraps a MonetDB table or query result and behaves like a 
R \code{\link[base]{data.frame}}.
   Many operations typical for \code{data.frame} are supported, e.g. \code{$}, 
\code{[}, basic math and comparisons.
   
-  Data is only loaded when \code{\link[MonetDB.R]{as.data.frame}} or 
\code{as.vector} are called, 
+  Data is only loaded when \code{\link[monet.frame]{as.data.frame}} or 
\code{as.vector} are called, 
   and most basic operations and calculations are mapped to SQL statements. 
   This greatly reduces the amount of data that has to be transferred between 
MonetDB and R 
   and thereby also increases speed, allowing you to analyse even more data 
with R.
@@ -35,8 +35,8 @@
   of these methods closely follow those implemented for \code{data.frame} 
objects.
     
      \itemize{
-         \item \code{\link[MonetDB.R]{mf}} -- Shorthand constructor, also 
creates a DB connection
-         \item \code{\link[MonetDB.R]{as.data.frame}} -- DB table or query 
result to R \code{data.frame} object
+         \item \code{\link[monet.frame]{mf}} -- Shorthand constructor, also 
creates a DB connection
+         \item \code{\link[monet.frame]{as.data.frame}} -- DB table or query 
result to R \code{data.frame} object
          \item \code{\link[=as.data.frame]{as.vector}} -- Single DB column to 
R \code{vector}
          \item \code{\link[utils]{str}} -- Display object structure (SQL 
query, columns, data types, ..)
          \item \code{\link[base]{print}} -- Prints database content wrapped in 
object to screen)
@@ -51,7 +51,7 @@
          \item \code{\link[=Extract]{$}} -- Extracts a single column from the 
wrapped object, behaves like \code{$} on \code{data.frame}
          \item \code{\link[base]{subset}} -- Returns a subset of the wrapped 
table that meets filter conditions
          \item \code{\link[=na.fail]{na.omit}} -- Filters out NA/NULL values 
(only for single columns)
-         \item \code{\link[MonetDB.R]{sample}} -- Gets n randomly selected 
rows of the wrapped query result or table as \code{data.frame}
+         \item \code{\link[monet.frame]{sample}} -- Gets n randomly selected 
rows of the wrapped query result or table as \code{data.frame}
           
          \item {\link[=groupGeneric]{S3 Group Generic Functions}}
          \itemize{
@@ -63,12 +63,12 @@
                \item \code{min}, \code{max}, \code{sum}, \code{range}, 
\code{prod}
          }
          
-         \item \code{\link[MonetDB.R]{sd}} -- Calculates the standard 
deviation (only for single columns)
-         \item \code{\link[MonetDB.R]{var}} -- Calculates the variance (only 
for single columns)
+         \item \code{\link[monet.frame]{sd}} -- Calculates the standard 
deviation (only for single columns)
+         \item \code{\link[monet.frame]{var}} -- Calculates the variance (only 
for single columns)
          \item \code{\link[stats]{quantile}} -- Provides quantile values (only 
for single numeric columns)
          \item \code{\link[stats]{median}} -- Retrieves the Median value (only 
for single numeric columns)
          \item \code{\link[stats]{aggregate}} -- Computes summary statistics 
by groups
-         \item \code{\link[MonetDB.R]{aggregatef}} -- Computes summary 
statistics by groups using formula
+         \item \code{\link[monet.frame]{aggregatef}} -- Computes summary 
statistics by groups using formula
          \item \code{\link[=cbind]{rbind}} -- Combines \code{monet.frame} 
objects of compatible structure through concatenation
          \item \code{\link[base]{merge}} -- Merge two \code{monet.frame} 
objects together using a DB JOIN operation
          \item \code{\link[base]{sort}} -- Sort a database column ascending or 
descending (only for single columns)
diff --git a/clients/R/monet.frame/man/set.debug.Rd 
b/clients/R/monet.frame/man/set.debug.Rd
--- a/clients/R/monet.frame/man/set.debug.Rd
+++ b/clients/R/monet.frame/man/set.debug.Rd
@@ -14,7 +14,7 @@ can change that.
 
 }
 \arguments{
-  \item{x}{A \code{\link[MonetDB.R]{monet.frame}} monet.frame virtual data 
object.}
+  \item{x}{A \code{\link[monet.frame]{monet.frame}} monet.frame virtual data 
object.}
   \item{debug}{Boolean (TRUE/FALSE) to enable/disable debugging}
  }
 \examples{
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to