[rkward-cvs] SF.net SVN: rkward: [1610] trunk/rkward/rkward/plugins

kapatp at users.sourceforge.net kapatp at users.sourceforge.net
Sat Mar 17 07:33:42 UTC 2007


Revision: 1610
          http://svn.sourceforge.net/rkward/?rev=1610&view=rev
Author:   kapatp
Date:     2007-03-17 00:33:41 -0700 (Sat, 17 Mar 2007)

Log Message:
-----------
Some small corrections

Modified Paths:
--------------
    trunk/rkward/rkward/plugins/distributions/clt/plot_binomial_clt.rkh
    trunk/rkward/rkward/plugins/x11device/export.rkh
    trunk/rkward/rkward/plugins/x11device/export.xml

Modified: trunk/rkward/rkward/plugins/distributions/clt/plot_binomial_clt.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/clt/plot_binomial_clt.rkh	2007-03-16 15:09:44 UTC (rev 1609)
+++ trunk/rkward/rkward/plugins/distributions/clt/plot_binomial_clt.rkh	2007-03-17 07:33:41 UTC (rev 1610)
@@ -10,8 +10,8 @@
 		<caption id="tab_plot_distrib_clt"/>
 		<setting id="frame_binomparam">See RKWard help on <link href="rkward://component/plot_binomial_distribution"/>.</setting>
 		<setting id="nAvg">These many samples (nAvg) are used to calculate sample average. For a fixed value of the parameters, one would be interested in seeing how the distribution of the sample averages change as this number increases.</setting>
-		<setting id="nDist">These many sets-of-samples (nDist) are used to get some idea about the distribution of the sample averages. Each set provides an average. Then these averages are used to construct the 'Histogram' or the 'QQplot' or the 'Distribution function'.</setting>
-		<setting id="function">Choose one of 'Histogram', 'QQplot' or 'Distribution function' to compare the distribution of the sample averages of D with that of Normal distribution. As of now, only 'Histogram' has been implemented.</setting>
+		<setting id="nDist">These many sets-of-samples (nDist) are used to get some idea about the distribution of the sample averages. Each set provides an average. Then these averages are used to construct the 'Histogram' or the 'Distribution function'.</setting>
+		<setting id="function">Choose one of 'Histogram' or 'Distribution function' to compare the distribution of the sample averages of D with that of Normal distribution. As of now, only 'Histogram' has been implemented.</setting>
 		<setting id="scalenorm">Should the sample averages be normalised, by subtracting the mean, E(D), of D and dividing by the standard deviation, S(D)/sqrt(nAvg), where S(D) is the standard deviation of D? If done so, then the target Normal distribution is taken to be the standard one, that is, with mean 0 and variance 1. Otherwise the target distribution is Normal with the mean E(D) and standard deviation S(D)/sqrt(nAvg).</setting>
 		<setting id="drawnorm">Should a Normal curve be drawn? For the case of 'Histogram', nDist random samples are drawn from the target Normal distribution and their density values are plotted.</setting>
 		<setting id="normpointtype">Pointtype for the Normal curve.</setting>

Modified: trunk/rkward/rkward/plugins/x11device/export.rkh
===================================================================
--- trunk/rkward/rkward/plugins/x11device/export.rkh	2007-03-16 15:09:44 UTC (rev 1609)
+++ trunk/rkward/rkward/plugins/x11device/export.rkh	2007-03-17 07:33:41 UTC (rev 1610)
@@ -11,10 +11,11 @@
 	<settings>
 		<caption id="tab_file_and_type"/>
 
-		<caption id="frame_dimensions"/>
 		<setting id="file">The filename to save to. By default the file will be saved in the directory from where RkWard was started, which is the user's home directory when started from K-menu. After checking for a proper file extension, this is the <i>file</i> parameter to dev.print. For exporting via ghostscript provide a suitable extension.</setting>
-    <setting id="autoextension">Check this box to let RKWard detect the file extension automatically. If the filename specified in the 'File name' box already has a relevant extension, then nothing is done, that is, the specified filename is used. Otherwise a relevant extension is appended to the filename above to construct the full filename. This option is disabled for export via ghostscript.</setting>
+    <setting id="autoextension">Check this box to let RKWard detect the file extension automatically. If the filename specified in the 'File name' box already has a relevant extension, then nothing is done, that is, the specified filename is used. Otherwise a relevant extension is appended to the filename above to construct the full filename. This option is disabled for exporting via ghostscript.</setting>
 		<setting id="format">Choose whether to use postscript or pdf or png or jpeg for exporting the file. This is the <i>device</i> parameter to dev.print. If 'via Ghostscript' is chosen then the output format of the ghostscript device will need to be provided (see below under 'Ghostscript specific options').</setting>
+
+		<caption id="frame_dimensions"/>
 		<setting id="autowidth">Check this box to let the export function determine the width automatically.</setting>
 		<setting id="autoheight">This is similar to 'Automatic Width', but for height.</setting>
 		<setting id="width">This is the <i>width</i> parameter to the exporting function. This is specified in inches. For JPEG/PNG exports (which require width in pixels), the actual width is evaluated by multiplying the width value provided in inches with the resolution (in dpi, 'dots per inch'). So, width_pixels = width_inches * resolution_dpi. If resolution is set to 'Default Resolution', then a value of 96 is used as the default resolution for exporting to jpeg or png and a value of 72 is used for exporting via ghostscript. Otherwise the provided resolution value is used. None of these matter for exporting to Postscript/PDF where the width parameter is provided in inches.
@@ -24,7 +25,7 @@
 
 		<caption id="frame_generic_options"/>
 		<setting id="pointsize">This is the <i>pointsize</i> parameter to dev.print.</setting>
-		<setting id="resolution">Available only for PNG/JPEG, this is the <i>res</i> parameter to dev.print. This value is used in converting from width/height in pixels to inches as described above (under 'Width'). The default resolution (when 'Default Resolution' is checked) is 96.</setting>
+		<setting id="resolution">Available only for PNG/JPEG/Ghostscript, this is the <i>res</i> parameter to dev.print or dev2bitmap. This value is used in converting from width/height in pixels to inches as described above (under 'Width'). The default resolution (when 'Default Resolution' is checked) is 96 for PNG/JPEG exports and it is 72 for Ghostscript exports.</setting>
 		<setting id="quality">Available only for JPEG, this is the <i>quality</i> parameter to <b>jpeg</b>. Sets the quality for JPEG exporting. The default quality is 75.</setting>
 
 		<caption id="tab_more_options"/>

Modified: trunk/rkward/rkward/plugins/x11device/export.xml
===================================================================
--- trunk/rkward/rkward/plugins/x11device/export.xml	2007-03-16 15:09:44 UTC (rev 1609)
+++ trunk/rkward/rkward/plugins/x11device/export.xml	2007-03-17 07:33:41 UTC (rev 1610)
@@ -94,7 +94,7 @@
 							</column>
 							<column>
 								<checkbox id="autoquality" value="1" value_unchecked="0" checked="true" label="Default Quality"/>
-								<spinbox label="JPEG Quality" id="quality" min="0" max="100" initial="75" default_precision="1"/>
+								<spinbox label="JPEG Quality" type="integer" id="quality" min="0" max="100" initial="75"/>
 							</column>
 						</row>
 					</frame>
@@ -177,7 +177,7 @@
 							<option value="jpeg" label="JPEG" />
 							<option value="other" label="Other (specify here):" />
 						</dropdown>
-						<input label="Ghostscript device" id="gs_specifiedformat" initial="png16m" size="medium"/>
+						<input label="Other Ghostscript device" id="gs_specifiedformat" initial="pcxgray" size="medium"/>
 					</row>
 				</frame>
 			</tab>


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