Project

General

Profile

Bug #4002 ยป R2-arbitrary.xml

ben leinfelder, 08/18/2009 03:18 PM

 
1
<?xml version="1.0" standalone="no"?>
2
<!DOCTYPE entity PUBLIC "-//UC Berkeley//DTD MoML 1//EN"
3
    "http://ptolemy.eecs.berkeley.edu/xml/dtd/MoML_1.dtd">
4
<entity name="R2-arbitrary" class="ptolemy.actor.TypedCompositeActor">
5
    <property name="entityId" class="org.kepler.moml.NamedObjId" value="urn:lsid:gamma.msi.ucsb.edu/OpenAuth/:287:3222:11">
6
    </property>
7
    <property name="class" class="ptolemy.kernel.util.StringAttribute" value="ptolemy.actor.TypedCompositeActor">
8
        <property name="id" class="ptolemy.kernel.util.StringAttribute" value="null">
9
        </property>
10
    </property>
11
    <property name="_createdBy" class="ptolemy.kernel.attributes.VersionAttribute" value="8.1.devel">
12
    </property>
13
    <property name="derivedFrom" class="org.kepler.moml.NamedObjIdReferralList" value="urn:lsid:gamma.msi.ucsb.edu/OpenAuth/:287:3207:19">
14
    </property>
15
    <property name="TOP Provenance Recorder" class="org.kepler.provenance.ProvenanceRecorder">
16
        <property name="Recording Type" class="ptolemy.data.expr.StringParameter" value="SQL-SPA-v8">
17
        </property>
18
        <property name="Record Token Values" class="ptolemy.data.expr.Parameter" value="true">
19
        </property>
20
    </property>
21
    <property name="Reporting Listener" class="org.kepler.module.reporting.ReportingListener">
22
    </property>
23
    <property name="SDF Director" class="ptolemy.domains.sdf.kernel.SDFDirector">
24
        <property name="iterations" class="ptolemy.data.expr.Parameter" value="1">
25
        </property>
26
        <property name="vectorizationFactor" class="ptolemy.data.expr.Parameter" value="1">
27
        </property>
28
        <property name="allowDisconnectedGraphs" class="ptolemy.data.expr.Parameter" value="false">
29
        </property>
30
        <property name="allowRateChanges" class="ptolemy.data.expr.Parameter" value="false">
31
        </property>
32
        <property name="constrainBufferSizes" class="ptolemy.data.expr.Parameter" value="true">
33
        </property>
34
        <property name="period" class="ptolemy.data.expr.Parameter" value="0.0">
35
        </property>
36
        <property name="synchronizeToRealTime" class="ptolemy.data.expr.Parameter" value="false">
37
        </property>
38
        <property name="timeResolution" class="ptolemy.actor.parameters.SharedParameter" value="1E-10">
39
        </property>
40
        <property name="Scheduler" class="ptolemy.domains.sdf.kernel.SDFScheduler">
41
            <property name="constrainBufferSizes" class="ptolemy.data.expr.Parameter" value="constrainBufferSizes">
42
            </property>
43
        </property>
44
<property name="KeplerDocumentation" class="ptolemy.vergil.basic.KeplerDocumentationAttribute">
45
<property name="description" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>null</configure></property>
46
<property name="author" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Steve Neuendorffer</configure></property>
47
<property name="version" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>null</configure></property>
48
<property name="userLevelDocumentation" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>&#10;&lt;p&gt;The SDF Director is often used to oversee fairly simple, sequential workflows in which the director can determine the order of actor invocation from the workflow. Types of workflows that would run well under an SDF Director include processing and reformatting tabular data, converting one data type to another, and reading and plotting a series of data points. A workflow in which an image is read, processed (rotated, scaled, clipped, filtered, etc.), and then displayed, is also an example of a sequential workflow that requires a director simply to ensure that each actor fires in the proper order (i.e., that each actor executes only after it receives its required inputs).&lt;/p&gt;&#10;&#10;&lt;p&gt;The SDF Director is very efficient and will not tax system resources with overhead. However, this efficiency requires that certain conditions be met, namely that the data consumption and production rate of each actor in an SDF workflow be constant and declared. If an actor reads one piece of data and calculates and outputs a single result, it must always read and output a single token of data. This data rate cannot change during workflow execution and, in general, workflows that require dynamic scheduling and/or flow control cannot use this director. Additionally, the SDF Director has no understanding of passing time (at least by default), and actors that depend on a notion of time may not work as expected. For example, a TimedPlotter actor will plot all values at time zero when used in SDF. &lt;/p&gt;&#10;&#10;&lt;p&gt;By default, the SDF Director requires that all actors in its workflow be connected. Otherwise, the director cannot account for concurrency between disconnected workflow parts. Usually, a PN Director should be used for workflows that contain disconnected actors; however, the SDF Director's allowDisconnectedGraphs parameter may also be set to true. The SDF Director will then schedule each disconnected &quot;island&quot; independently. The director cannot infer the sequential relationship between disconnected actors (i.e., nothing forces the director to finish executing all actors on one island before firing actors on another). However, the order of execution within each island should be correct. Usually, disconnected graphs in an SDF model indicate an error.&lt;/p&gt;&#10; &#10;&lt;p&gt;Because SDF Directors schedule actors to fire only after they receive their inputs, workflows that require loops (feeding an actor's output back into its input port for further processing) can cause &quot;deadlock&quot; errors. The deadlock errors occur because the actor depends on its own output value as an initial input. To fix this problem, use a SampleDelay actor to generate and inject an initial input value into the workflow.&lt;/p&gt;&#10;&#10;&lt;p&gt;The SDF Director determines the order in which actors execute and how many times each actor needs to be fired to complete a single iteration of the workflow. This schedule is calculated BEFORE the director begins to iterate the workflow. Because the SDF Director calculates a schedule in advance, it is quite efficient. However, SDF workflows must be static. In other words, the same number of tokens must be consumed/produced at every iteration of the workflow. Workflows that require dynamic control structures, such as a BooleanSwitch actor that sends output on one of two ports depending on the value of a 'control', cannot be used with an SDF Director because the number of tokens on each output can change for each execution.&lt;/p&gt;&#10;&#10;&lt;p&gt;Unless otherwise specified, the SDF Director assumes that each actor consumes and produces exactly one token per channel on each firing. Actors that do not follow the one-token-per-channel firing convention (e.g., Repeat or Ramp) must declare the number of tokens they produce or consume via the appropriate parameters. &lt;/p&gt;&#10;&#10;&lt;p&gt;The number of times a workflow is iterated is controlled by the director's iterations parameter. By default, this parameter is set to &quot;0&quot;. Note that &quot;0&quot; does not mean &quot;no iterations.&quot; Rather, &quot;0&quot; means that the workflow will iterate forever. Values greater than zero specify the actual number of times the director should execute the entire workflow. A value of 1, meaning that the director will run the workflow once, is often the best setting when building an SDF workflow. &lt;/p&gt;&#10;&#10;&lt;p&gt;The amount of data processed by an SDF workflow is a function of both the number of times the workflow iterates and the value of the director's vectorizationFactor parameter. The vectorizationFactor is used to increase the efficiency of a workflow by increasing the number of times actors fire each time the workflow iterates. If the parameter is set to a positive integer (other than 1), the director will fire each actor the specified number of times more than normal. The default is 1, indicating that no vectorization should be performed. Keep in mind that changing the vectorizationFactor parameter changes the meaning of a nested SDF workflow and may cause deadlock in a workflow that uses it. &lt;/p&gt;&#10;&#10;&lt;p&gt;The SDF Director has several advanced parameters that are generally only relevant when an SDF workflow contains composite components. In most cases the period, timeResolution, synchronizeToRealTime, allowRateChanges, timeResolution, and constrainBufferSizes parameters can be left at their default values.&lt;/p&gt;&#10;&#10;&lt;p&gt;For more information about the SDF Director, see the Ptolemy documentation (http://ptolemy.eecs.berkeley.edu/papers/05/ptIIdesign3-domains/ptIIdesign3-domains.pdf).&lt;/p&gt;&#10;&#10;</configure></property>
49
<property name="prop:allowDisconnectedGraphs" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Specify whether to allow disconnected actors in the workflow (by default, all actors are required to be connected). If disconnected actors are permitted, the SDF Director will schedule each disconnected 'island' independently. Nothing &quot;forces&quot; the director to finish executing all actors on one island before firing actors on another. However, the order of execution within each island should be correct. Usually, disconnected graphs in an SDF workflow indicate an error.</configure></property>
50
<property name="prop:allowRateChanges" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Specify whether dynamic rate changes are permitted or not. By default, rate changes are not permitted, and the director will perform a check to disallow such workflows. If the parameter is selected, then workflows that require rate parameters to be modified during execution are valid, and the SDF Director will dynamically compute a new schedule at runtime. This is an advanced parameter that can usually be left at its default value.</configure></property>
51
<property name="prop:constrainBufferSizes" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Specify whether buffer sizes are fixed. By default, buffers are fixed, and attempts to write to the buffer that cause the buffer to exceed its scheduled size result in an error. This is an advanced parameter that can usually be left at its default value.</configure></property>
52
<property name="prop:timeResolution" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The time precision used by this director. All time values are rounded to the nearest multiple of this number. The value is a double that defaults to &quot;1E-10&quot; (which is 10-10). This is an advanced parameter that can usually be left at its default value.</configure></property>
53
<property name="prop:iterations" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Specify the number of times a workflow is iterated. By default, this parameter is set to &quot;0&quot;. Note that &quot;0&quot; does not mean &quot;no iterations.&quot; Rather, &quot;0&quot; means that the workflow will iterate forever. Values greater than zero specify the actual number of times the director should execute the entire workflow. A value of 1, meaning that the director will run the workflow once, is often the best setting when building an SDF workflow. </configure></property>
54
<property name="prop:vectorizationFactor" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The vectorizationFactor is used to increase the efficiency of a workflow by increasing the number of times actors fire each time the workflow iterates. If the parameter is set to a positive integer (other than 1), the director will fire each actor the specified number of times more than normal. The default is 1, indicating that no vectorization should be performed. Keep in mind that changing the vectorizationFactor parameter changes the meaning of a nested SDF workflow and may cause deadlock in a workflow that uses it. </configure></property>
55
<property name="prop:synchronizeToRealTime" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Specify whether the execution should synchronize to real time or not. By default, the director does not synchronize to real time. If synchronize is selected, the director will only process the workflow when elapsed real time matches the product of the period parameter and the iteration count. Note: if the period parameter has a value of 0.0 (the default), then selecting this parameter has no effect. This is an advanced parameter that can usually be left at its default value.</configure></property>
56
<property name="prop:period" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The time period of each iteration. The value is a double that defaults to 0.0, which means that the director does not increment workflow time. If the value greater than 0.0, the actor will increment workflow time each time it fires. This is an advanced parameter that can usually be left at its default value. </configure></property>
57
</property>        <property name="entityId" class="org.kepler.moml.NamedObjId" value="urn:lsid:gamma.msi.ucsb.edu/OpenAuth/:287:3209:1">
58
        </property>
59
        <property name="class" class="ptolemy.kernel.util.StringAttribute" value="ptolemy.domains.sdf.kernel.SDFDirector">
60
            <property name="id" class="ptolemy.kernel.util.StringAttribute" value="urn:lsid:kepler-project.org:directorclass:1:1">
61
            </property>
62
        </property>
63
        <property name="semanticType00" class="org.kepler.sms.SemanticType" value="urn:lsid:localhost:onto:1:1#Director">
64
        </property>
65
        <property name="semanticType11" class="org.kepler.sms.SemanticType" value="urn:lsid:localhost:onto:2:1#Director">
66
        </property>
67
        <property name="_location" class="ptolemy.kernel.util.Location" value="[105.0, 100.0]">
68
        </property>
69
        <property name="derivedFrom" class="org.kepler.moml.NamedObjIdReferralList" value="urn:lsid:kepler-project.org:director:1:1">
70
        </property>
71
    </property>
72
    <property name="_windowProperties" class="ptolemy.actor.gui.WindowPropertiesAttribute" value="{bounds={278, 22, 1150, 1028}, maximized=false}">
73
    </property>
74
    <property name="_vergilSize" class="ptolemy.actor.gui.SizeAttribute" value="[811, 640]">
75
    </property>
76
    <property name="_vergilZoomFactor" class="ptolemy.data.expr.ExpertParameter" value="1.0">
77
    </property>
78
    <property name="_vergilCenter" class="ptolemy.data.expr.ExpertParameter" value="{405.5, 320.0}">
79
    </property>
80
    <entity name="Display" class="ptolemy.actor.lib.gui.Display">
81
        <property name="_windowProperties" class="ptolemy.actor.gui.WindowPropertiesAttribute" value="{bounds={598, 432, 716, 347}, maximized=false}">
82
        </property>
83
        <property name="_paneSize" class="ptolemy.actor.gui.SizeAttribute" value="[716, 325]">
84
        </property>
85
        <property name="rowsDisplayed" class="ptolemy.data.expr.Parameter" value="10">
86
        </property>
87
        <property name="columnsDisplayed" class="ptolemy.data.expr.Parameter" value="40">
88
        </property>
89
        <property name="suppressBlankLines" class="ptolemy.data.expr.Parameter" value="false">
90
        </property>
91
        <property name="title" class="ptolemy.data.expr.StringParameter" value="">
92
        </property>
93
<property name="KeplerDocumentation" class="ptolemy.vergil.basic.KeplerDocumentationAttribute">
94
<property name="description" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>null</configure></property>
95
<property name="author" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Yuhong Xiong, Edward A. Lee</configure></property>
96
<property name="version" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>null</configure></property>
97
<property name="userLevelDocumentation" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>&lt;p&gt;The Display actor reads tokens of any type via its input multiport, and displays each token on a separate line in a text display window.&lt;/p&gt;&#10;&#10;&lt;p&gt;Specify the size of the text display window with the rowsDisplayed and columnsDisplayed parameters. Simply resizing the window onscreen does not persistently change the size when the workflow is saved, closed, and then re-opened. &lt;/p&gt;&#10;&#10;&lt;p&gt;If the input is a string token, then the actor strips the surrounding quotation marks before displaying the value.&lt;/p&gt; &#10;&#10;&lt;p&gt;Select the suppressBlankLines parameter to specify that the actor not add blank lines to the display. By default, the actor will add blank lines.&lt;/p&gt;&#10;&#10;&lt;p&gt;Note: this actor can consume large amounts of memory. It is not advisable to use it to display large output streams.&lt;/p&gt;</configure></property>
98
<property name="port:input" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>A multiport that accepts tokens of any type.</configure></property>
99
<property name="prop:suppressBlankLines" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Specify whether the actor should display blank lines (the default) or suppress them.</configure></property>
100
<property name="prop:rowsDisplayed" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The vertical size of the display, in rows. The value is an integer that defaults to 10.</configure></property>
101
<property name="prop:columnsDisplayed" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The horizontal size of the display, in columns. The value is an integer that defaults to 40.</configure></property>
102
<property name="prop:title" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The title of the text display window. If specified, the value will appear in the title bar of the text display window.</configure></property>
103
</property>        <property name="entityId" class="org.kepler.moml.NamedObjId" value="urn:lsid:kepler-project.org:actor:7:1">
104
        </property>
105
        <property name="class" class="ptolemy.kernel.util.StringAttribute" value="ptolemy.actor.lib.gui.Display">
106
            <property name="id" class="ptolemy.kernel.util.StringAttribute" value="urn:lsid:kepler-project.org:class:883:1">
107
            </property>
108
        </property>
109
        <property name="semanticType00" class="org.kepler.sms.SemanticType" value="urn:lsid:localhost:onto:1:1#TextualOutputActor">
110
        </property>
111
        <property name="semanticType11" class="org.kepler.sms.SemanticType" value="urn:lsid:localhost:onto:2:1#TextualOutput">
112
        </property>
113
        <property name="_location" class="ptolemy.kernel.util.Location" value="[450.0, 280.0]">
114
        </property>
115
    </entity>
116
    <entity name="RExpression" class="org.ecoinformatics.seek.R.RExpression2">
117
        <property name="expression" class="ptolemy.kernel.util.StringAttribute" value="x &lt;- 1:10&#10;y &lt;- x + rnorm(10)&#10;f &lt;- (y ~ x)&#10;l &lt;- lm(f)&#10;s &lt;- summary(l)">
118
            <display name="R function or script"/>
119
            <property name="R Expression" class="ptolemy.actor.gui.style.TextStyle">
120
                <property name="height" class="ptolemy.data.expr.Parameter" value="10">
121
                </property>
122
                <property name="width" class="ptolemy.data.expr.Parameter" value="30">
123
                </property>
124
            </property>
125
        </property>
126
        <property name="Rcwd" class="ptolemy.data.expr.StringParameter" value="/Users/leinfelder/.kepler/">
127
            <display name="R working directory"/>
128
        </property>
129
        <property name="save_nosave" class="ptolemy.data.expr.StringParameter" value="--no-save">
130
            <display name="Save or not"/>
131
        </property>
132
        <property name="graphicsFormat" class="ptolemy.data.expr.StringParameter" value="png">
133
            <display name="Graphics Format"/>
134
        </property>
135
        <property name="graphicsOutput" class="ptolemy.data.expr.Parameter" value="true">
136
            <display name="Graphics Output"/>
137
        </property>
138
        <property name="displayGraphicsOutput" class="ptolemy.data.expr.Parameter" value="false">
139
            <display name="Automatically display graphics"/>
140
        </property>
141
        <property name="numXPixels" class="ptolemy.data.expr.StringParameter" value="480">
142
            <display name="Number of X pixels in image"/>
143
        </property>
144
        <property name="numYPixels" class="ptolemy.data.expr.StringParameter" value="480">
145
            <display name="Number of Y pixels in image"/>
146
        </property>
147
        <property name="_editorFactory" class="ptolemy.vergil.toolbox.TextEditorTableauFactory">
148
            <property name="attributeName" class="ptolemy.kernel.util.StringAttribute" value="expression">
149
            </property>
150
            <property name="columnsDisplayed" class="ptolemy.data.expr.Parameter" value="80">
151
            </property>
152
            <property name="rowsDisplayed" class="ptolemy.data.expr.Parameter" value="40">
153
            </property>
154
        </property>
155
<property name="KeplerDocumentation" class="ptolemy.vergil.basic.KeplerDocumentationAttribute">
156
<property name="description" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>null</configure></property>
157
<property name="author" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Dan Higgins</configure></property>
158
<property name="version" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>null</configure></property>
159
<property name="userLevelDocumentation" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>&lt;p&gt;The RExpression actor runs an R script or function. Input and output port are created by the user and correspond to R variables used in the specified R script. The actor outputs the result of the evaluated script.&lt;/p&gt;&#10;&#10;&lt;p&gt;The R application must be installed on the local system to use this actor. R is a language and environment for statistical computing and graphics. For more information about R, see http://www.r-project.org/.&lt;/p&gt;&#10;&#10;&lt;p&gt;Kepler contains a number of preconfigured R-actors: Barplot, Boxplot, Scatterplot, Summary, RandomNormal, RandomUniform, Correlation, LinearModel, Regression, RMean, RMedian, RQuantile, and  SummaryStatistics.&lt;/p&gt;</configure></property>
160
<property name="port:output" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>An output port that broadcasts a copy of the text output that R generates. As the actor communicates with R to run the R function or script, the output port sends back the response (i.e., the values and statistical outputs).</configure></property>
161
<property name="port:graphicsFileName" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>An output port that broadcasts the file name of the generated graph of the results.</configure></property>
162
<property name="prop:Rcwd" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The 'R' working directory (the home directory by default). </configure></property>
163
<property name="prop:displayGraphicsOutput" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Select to display the plot once the actor has generated it.</configure></property>
164
<property name="prop:graphicsFormat" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The graphics output format. Currently the actor supports either  *.pdf or  *.png.</configure></property>
165
<property name="prop:numXPixels" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The width of the output graphic in pixels.</configure></property>
166
<property name="prop:numYPixels" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The height of the output graphic in pixels.</configure></property>
167
<property name="prop:expression" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The expression that is evaluated to produce the output.</configure></property>
168
<property name="prop:save_nosave" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Specify whether or not to save the R workspace when R is closed; set to '--save' to retrieve the workspace later in a workflow in another R-actor.</configure></property>
169
<property name="prop:graphicsOutput" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Specify whether or not to create a graphics output port. By default, the actor will create a graphics output port.</configure></property>
170
</property>        <property name="entityId" class="org.kepler.moml.NamedObjId" value="urn:lsid:gamma.msi.ucsb.edu/OpenAuth/:287:3221:7">
171
        </property>
172
        <property name="class" class="ptolemy.kernel.util.StringAttribute" value="org.ecoinformatics.seek.R.RExpression2">
173
            <property name="id" class="ptolemy.kernel.util.StringAttribute" value="urn:lsid:kepler-project.org:class:1126:1">
174
            </property>
175
        </property>
176
        <property name="semanticType00" class="org.kepler.sms.SemanticType" value="urn:lsid:localhost:onto:1:1#MathOperationActor">
177
        </property>
178
        <property name="semanticType11" class="org.kepler.sms.SemanticType" value="urn:lsid:localhost:onto:2:1#GeneralPurpose">
179
        </property>
180
        <property name="_location" class="ptolemy.kernel.util.Location" value="[150.0, 270.0]">
181
        </property>
182
        <property name="derivedFrom" class="org.kepler.moml.NamedObjIdReferralList" value="urn:lsid:kepler-project.org:actor:360:1">
183
        </property>
184
        <port name="x" class="ptolemy.actor.TypedIOPort">
185
            <property name="output"/>
186
        </port>
187
        <port name="y" class="ptolemy.actor.TypedIOPort">
188
            <property name="output"/>
189
        </port>
190
        <port name="f" class="ptolemy.actor.TypedIOPort">
191
            <property name="output"/>
192
        </port>
193
        <port name="l" class="ptolemy.actor.TypedIOPort">
194
            <property name="output"/>
195
        </port>
196
        <port name="s" class="ptolemy.actor.TypedIOPort">
197
            <property name="output"/>
198
        </port>
199
    </entity>
200
    <entity name="RExpression2" class="org.ecoinformatics.seek.R.RExpression2">
201
        <property name="expression" class="ptolemy.kernel.util.StringAttribute" value="class(x)&#10;class(y)&#10;class(f)&#10;class(l)&#10;class(s)">
202
            <display name="R function or script"/>
203
            <property name="R Expression" class="ptolemy.actor.gui.style.TextStyle">
204
                <property name="height" class="ptolemy.data.expr.Parameter" value="10">
205
                </property>
206
                <property name="width" class="ptolemy.data.expr.Parameter" value="30">
207
                </property>
208
            </property>
209
        </property>
210
        <property name="Rcwd" class="ptolemy.data.expr.StringParameter" value="/Users/leinfelder/.kepler/">
211
            <display name="R working directory"/>
212
        </property>
213
        <property name="save_nosave" class="ptolemy.data.expr.StringParameter" value="--no-save">
214
            <display name="Save or not"/>
215
        </property>
216
        <property name="graphicsFormat" class="ptolemy.data.expr.StringParameter" value="png">
217
            <display name="Graphics Format"/>
218
        </property>
219
        <property name="graphicsOutput" class="ptolemy.data.expr.Parameter" value="false">
220
            <display name="Graphics Output"/>
221
        </property>
222
        <property name="displayGraphicsOutput" class="ptolemy.data.expr.Parameter" value="false">
223
            <display name="Automatically display graphics"/>
224
        </property>
225
        <property name="numXPixels" class="ptolemy.data.expr.StringParameter" value="480">
226
            <display name="Number of X pixels in image"/>
227
        </property>
228
        <property name="numYPixels" class="ptolemy.data.expr.StringParameter" value="480">
229
            <display name="Number of Y pixels in image"/>
230
        </property>
231
        <property name="_editorFactory" class="ptolemy.vergil.toolbox.TextEditorTableauFactory">
232
            <property name="attributeName" class="ptolemy.kernel.util.StringAttribute" value="expression">
233
            </property>
234
            <property name="columnsDisplayed" class="ptolemy.data.expr.Parameter" value="80">
235
            </property>
236
            <property name="rowsDisplayed" class="ptolemy.data.expr.Parameter" value="40">
237
            </property>
238
        </property>
239
<property name="KeplerDocumentation" class="ptolemy.vergil.basic.KeplerDocumentationAttribute">
240
<property name="description" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>null</configure></property>
241
<property name="author" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Dan Higgins</configure></property>
242
<property name="version" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>null</configure></property>
243
<property name="userLevelDocumentation" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>&lt;p&gt;The RExpression actor runs an R script or function. Input and output port are created by the user and correspond to R variables used in the specified R script. The actor outputs the result of the evaluated script.&lt;/p&gt;&#10;&#10;&lt;p&gt;The R application must be installed on the local system to use this actor. R is a language and environment for statistical computing and graphics. For more information about R, see http://www.r-project.org/.&lt;/p&gt;&#10;&#10;&lt;p&gt;Kepler contains a number of preconfigured R-actors: Barplot, Boxplot, Scatterplot, Summary, RandomNormal, RandomUniform, Correlation, LinearModel, Regression, RMean, RMedian, RQuantile, and  SummaryStatistics.&lt;/p&gt;</configure></property>
244
<property name="port:graphicsFileName" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>An output port that broadcasts the file name of the generated graph of the results.</configure></property>
245
<property name="port:output" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>An output port that broadcasts a copy of the text output that R generates. As the actor communicates with R to run the R function or script, the output port sends back the response (i.e., the values and statistical outputs).</configure></property>
246
<property name="prop:Rcwd" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The 'R' working directory (the home directory by default). </configure></property>
247
<property name="prop:displayGraphicsOutput" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Select to display the plot once the actor has generated it.</configure></property>
248
<property name="prop:graphicsFormat" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The graphics output format. Currently the actor supports either  *.pdf or  *.png.</configure></property>
249
<property name="prop:numXPixels" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The width of the output graphic in pixels.</configure></property>
250
<property name="prop:numYPixels" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The height of the output graphic in pixels.</configure></property>
251
<property name="prop:expression" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>The expression that is evaluated to produce the output.</configure></property>
252
<property name="prop:graphicsOutput" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Specify whether or not to create a graphics output port. By default, the actor will create a graphics output port.</configure></property>
253
<property name="prop:save_nosave" class="ptolemy.kernel.util.ConfigurableAttribute"><configure>Specify whether or not to save the R workspace when R is closed; set to '--save' to retrieve the workspace later in a workflow in another R-actor.</configure></property>
254
</property>        <property name="entityId" class="org.kepler.moml.NamedObjId" value="urn:lsid:gamma.msi.ucsb.edu/OpenAuth/:287:3221:9">
255
        </property>
256
        <property name="class" class="ptolemy.kernel.util.StringAttribute" value="org.ecoinformatics.seek.R.RExpression2">
257
            <property name="id" class="ptolemy.kernel.util.StringAttribute" value="urn:lsid:kepler-project.org:class:1126:1">
258
            </property>
259
        </property>
260
        <property name="semanticType00" class="org.kepler.sms.SemanticType" value="urn:lsid:localhost:onto:1:1#MathOperationActor">
261
        </property>
262
        <property name="semanticType11" class="org.kepler.sms.SemanticType" value="urn:lsid:localhost:onto:2:1#GeneralPurpose">
263
        </property>
264
        <property name="_location" class="ptolemy.kernel.util.Location" value="[310.0, 330.0]">
265
        </property>
266
        <property name="derivedFrom" class="org.kepler.moml.NamedObjIdReferralList" value="urn:lsid:kepler-project.org:actor:360:1">
267
        </property>
268
        <port name="x" class="ptolemy.actor.TypedIOPort">
269
            <property name="input"/>
270
        </port>
271
        <port name="y" class="ptolemy.actor.TypedIOPort">
272
            <property name="input"/>
273
        </port>
274
        <port name="f" class="ptolemy.actor.TypedIOPort">
275
            <property name="input"/>
276
        </port>
277
        <port name="l" class="ptolemy.actor.TypedIOPort">
278
            <property name="input"/>
279
        </port>
280
        <port name="s" class="ptolemy.actor.TypedIOPort">
281
            <property name="input"/>
282
        </port>
283
    </entity>
284
    <relation name="relation" class="ptolemy.actor.TypedIORelation">
285
    </relation>
286
    <relation name="relation3" class="ptolemy.actor.TypedIORelation">
287
    </relation>
288
    <relation name="relation4" class="ptolemy.actor.TypedIORelation">
289
    </relation>
290
    <relation name="relation5" class="ptolemy.actor.TypedIORelation">
291
    </relation>
292
    <relation name="relation6" class="ptolemy.actor.TypedIORelation">
293
    </relation>
294
    <relation name="relation2" class="ptolemy.actor.TypedIORelation">
295
    </relation>
296
    <relation name="relation7" class="ptolemy.actor.TypedIORelation">
297
    </relation>
298
    <link port="Display.input" relation="relation"/>
299
    <link port="Display.input" relation="relation2"/>
300
    <link port="RExpression.output" relation="relation2"/>
301
    <link port="RExpression.x" relation="relation7"/>
302
    <link port="RExpression.y" relation="relation3"/>
303
    <link port="RExpression.f" relation="relation4"/>
304
    <link port="RExpression.l" relation="relation5"/>
305
    <link port="RExpression.s" relation="relation6"/>
306
    <link port="RExpression2.output" relation="relation"/>
307
    <link port="RExpression2.x" relation="relation7"/>
308
    <link port="RExpression2.y" relation="relation3"/>
309
    <link port="RExpression2.f" relation="relation4"/>
310
    <link port="RExpression2.l" relation="relation5"/>
311
    <link port="RExpression2.s" relation="relation6"/>
312
</entity>
    (1-1/1)