[rkward-cvs] SF.net SVN: rkward:[3346] branches/jss_dec_10

sjar at users.sourceforge.net sjar at users.sourceforge.net
Tue Dec 28 14:34:41 UTC 2010


Revision: 3346
          http://rkward.svn.sourceforge.net/rkward/?rev=3346&view=rev
Author:   sjar
Date:     2010-12-28 14:34:41 +0000 (Tue, 28 Dec 2010)

Log Message:
-----------
* some corrections

Modified Paths:
--------------
    branches/jss_dec_10/FINAL_JSS_TEX/GUI_elements.tex
    branches/jss_dec_10/FINAL_JSS_TEX/example_plugin.tex
    branches/jss_dec_10/FINAL_JSS_TEX/technical.tex
    branches/jss_dec_10/figures/main_window.odp
    branches/jss_dec_10/figures/main_window.png

Removed Paths:
-------------
    branches/jss_dec_10/figures/code-hinting.png

Modified: branches/jss_dec_10/FINAL_JSS_TEX/GUI_elements.tex
===================================================================
--- branches/jss_dec_10/FINAL_JSS_TEX/GUI_elements.tex	2010-12-28 13:00:05 UTC (rev 3345)
+++ branches/jss_dec_10/FINAL_JSS_TEX/GUI_elements.tex	2010-12-28 14:34:41 UTC (rev 3346)
@@ -23,7 +23,7 @@
  \centering
  \includegraphics[width=15.450cm]{../figures/main_window.png}
  \caption{Default RKWard main window after start up. 
-A) Menubar and toolbar, B) tool panel showing workspace browser, C) main view area, showing
+A) Menu bar and toolbar, B) tool panel showing workspace browser, C) main view area, showing
 a help page D) tool panel showing embedded \proglang{R} console E) tool buttons, and status bar.
 Panels B) and D) can be resized or collapsed. The red border around (B) indicates that the workspace browser is the active interface element.}
  \label{fig:main_window}
@@ -82,7 +82,7 @@
 possible to configure shortcuts by right-clicking on the respective
 menu item.
 
-The choice of available actions on the tool bar can be
+The choice of available actions on the toolbar can be
 configured via ``Settings$\rightarrow$Configure Toolbars''. Further, it is possible to add and remove sets
 of data manipulation and analysis features from the GUI, using
 ``Settings$\rightarrow$Configure RKWard$\rightarrow$Plugins''.
@@ -99,8 +99,10 @@
 in a hierarchical tree structure. For instance, an object of class
 \code{list} can be expanded to show all contained objects 
 by clicking on the $+$ symbol left of the object name.
-The basic type of each object is indicated by specific icons. Further
-information on each object can be seen by hovering the mouse
+The basic type of each object is indicated by specific icons\footnote{The workspace browser 
+indicates the types ``Number'', ``Factor'', ``String'', and ``Logical'' for the \code{data.frame} 
+``my.data'' (Figure~\ref{fig:main_window}B).}. 
+Further information on each object can be seen by hovering the mouse
 pointer over the respective icon. A tooltip window will appear,
 including information such as dimensionality or function arguments,
 depending on the type of object. Further, objects inside \code{.GlobalEnv} can be
@@ -173,8 +175,8 @@
 
 \begin{figure}[htp]
  \centering
- \includegraphics[width=8.042cm,height=8.143cm]{../figures/special_paste.png}
- \caption{Special paste dialog. This tool allows to paste data (e.\,g., tabular, text) from the clipboard, directly to an 
+ \includegraphics[width=8.043cm]{../figures/special_paste.png}
+ \caption{Paste special dialog. This tool allows to paste data (e.\,g., tabular, text) from the clipboard, directly to an 
  \proglang{R} script and therefore accelerates the work process with data from different sources 
  like spread-sheet applications.
 }
@@ -529,8 +531,6 @@
 
 RKWard provides access to both \proglang{R} specific and 
 RKWard specific help pages.
-%% TF: Well, I wouldn't really call it seamless. The fact that it's all in one window, and cross-linked is mentioned, below.
-% seamlessly in a unified framework. 
 \proglang{R} specific documentation includes help pages for functions and packages 
 and the various \proglang{R} manuals. RKWard specific documentation consists of
 help pages on RKWard in general and on specific GUI dialogs\footnote{For technical 

Modified: branches/jss_dec_10/FINAL_JSS_TEX/example_plugin.tex
===================================================================
--- branches/jss_dec_10/FINAL_JSS_TEX/example_plugin.tex	2010-12-28 13:00:05 UTC (rev 3345)
+++ branches/jss_dec_10/FINAL_JSS_TEX/example_plugin.tex	2010-12-28 14:34:41 UTC (rev 3346)
@@ -175,35 +175,3 @@
 }
 \end{Code}
 \end{footnotesize}
-
-%% TF: I think this part is redundant. Instead, for the curious, I've added a footnote above, referring to the t_test-figure.
-%% ----
-% The generated code readable by the user is the following \proglang{R} code (code below and Figure~\ref{fig:t_test}). 
-% Here, \code{rk.header} and \code{rk.results} 
-% are RKWard functions provided by the package \pkg{rkward}. In case the package is installed the code below 
-% can be run from any \proglang{R} engine.
-% 
-% \begin{footnotesize}
-% \begin{Code}
-% local({
-% ## Prepare
-% names <- rk.get.description (my.csv.data[["before"]], my.csv.data[["after"]])
-% ## Compute
-% result <- t.test (my.csv.data[["before"]], my.csv.data[["after"]], alternative="less", paired=TRUE)
-% ## Print result
-% rk.header (result\$method, 
-% 	parameters=list ("Comparing", paste (names[1], "against", names[2]),
-% 	"H1", rk.describe.alternative (result)))
-% 
-% rk.results (list (
-% 	'Variable Name'=names,
-% 	'estimated mean'=result\$estimate,
-% 	'degrees of freedom'=result\$parameter,
-% 	t=result\$statistic,
-% 	p=result\$p.value,
-% 	'confidence interval percent'=(100 * attr(result\$conf.int, "conf.level")),
-% 	'confidence interval of difference'=result\$conf.int ))
-% })
-% 
-% \end{Code}
-% \end{footnotesize}

Modified: branches/jss_dec_10/FINAL_JSS_TEX/technical.tex
===================================================================
--- branches/jss_dec_10/FINAL_JSS_TEX/technical.tex	2010-12-28 13:00:05 UTC (rev 3345)
+++ branches/jss_dec_10/FINAL_JSS_TEX/technical.tex	2010-12-28 14:34:41 UTC (rev 3346)
@@ -44,7 +44,8 @@
 
 A further side-effect of the asynchronous threaded design is that there is
 inherently a rather clear separation between the GUI code and the code making direct use
-of the \proglang{R} API (see also Figure~\ref{fig:design_sketch}). In the current development version, the evaluation
+of the \proglang{R} Application Programmer Interface (API) (see also Figure~\ref{fig:design_sketch}). 
+In the current development version, the evaluation
 of \proglang{R} commands has even been moved into a separate process. Therefore in future releases it could 
 be made possible to run GUI and \proglang{R} engine on different computers.
 

Deleted: branches/jss_dec_10/figures/code-hinting.png
===================================================================
(Binary files differ)

Modified: branches/jss_dec_10/figures/main_window.odp
===================================================================
(Binary files differ)

Modified: branches/jss_dec_10/figures/main_window.png
===================================================================
(Binary files differ)


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the rkward-tracker mailing list