~l3on/ubuntu/precise/rkward/rebuild1

« back to all changes in this revision

Viewing changes to rkward/plugins/distributions/uniform_probabilities.xml

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Friedrichsmeier
  • Date: 2008-04-20 21:30:00 UTC
  • mfrom: (1.2.2 upstream) (3.1.9 hardy)
  • Revision ID: james.westby@ubuntu.com-20080420213000-fs4i8efmfc793bnn
new upstream release
closes: #475175
closes: #463348
closes: #475982

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<!DOCTYPE rkplugin>
2
 
<!--This is the "Uniform probabilities" plugin-->
3
 
 
4
2
<document>
5
 
<code file="uniform_probabilities.php" />
6
 
<dialog label="Uniform probabilities" >
7
 
    <tabbook>
8
 
     <tab label="Uniform probabilities" >
9
 
          <row>
10
 
            <column>
11
 
                <input initial="0.95" id="q" label="Vector of quantiles"/>
12
 
                <spinbox default_precision="2" type="real" initial="1" id="min" label="Lower limits of the distribution"/>
13
 
                <spinbox default_precision="2" type="real" initial="1" id="max" label="Upper limits of the distribution"/>
14
 
            </column>
15
 
            <column>
16
 
                <row>
17
 
                    <radio id="tail" label="Choose type of probability" >
18
 
                        <option value="lower.tail=TRUE" label="lower tail" />
19
 
                        <option value="lower.tail=FALSE" label="upper tail" />
20
 
                    </radio>
21
 
                </row>
22
 
                <row>
23
 
                    <radio id="logp" label="probabilities p are given as:" >
24
 
                      <option value="log.p = FALSE" label="not log(p)" />
25
 
                      <option value="log.p = TRUE" label="log(p)" />
26
 
                  </radio>
27
 
                </row>
28
 
              <stretch/>
29
 
            </column>
30
 
          </row>
31
 
      </tab>
32
 
    </tabbook>
33
 
  </dialog>
 
3
        <code file="uniform_probabilities.php" />
 
4
        <snippets>
 
5
                <snippet id="dist_options">
 
6
                        <spinbox default_precision="2" type="real" initial="0" id="min" label="Lower limit of the distribution"/>
 
7
                        <spinbox default_precision="2" type="real" initial="1" id="max" label="Upper limit of the distribution"/>
 
8
                </snippet>
 
9
                <include file="dist_snippets.xml"/>
 
10
        </snippets>
 
11
        <dialog label="Uniform probabilities" >
 
12
                <insert snippet="probabilities_layout"/>
 
13
        </dialog>
34
14
</document>