~l3on/ubuntu/precise/rkward/rebuild1

« back to all changes in this revision

Viewing changes to rkward/plugins/plots/cor_graph.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
<!DOCTYPE rkplugin>
 
2
<document>
 
3
        <code file="cor_graph.php" />
 
4
        <help file="cor_graph.rkh" />
 
5
 
 
6
        <dialog label="Correlation Matrix Plot" >               
 
7
                <tabbook>
 
8
                        <tab label="Variables" id="tab_variables">
 
9
                                <row>
 
10
                                        <varselector id="vars"/>
 
11
                                        <column>                                        
 
12
                                        <varslot type="numeric" min_vars="1" multi="true" id="x" source="vars" required="true" label="variable(s):"/>
 
13
                                        <preview id="preview"/>
 
14
                                        </column>
 
15
                                </row>
 
16
                        </tab>
 
17
                        <tab label="Options" id="tab_options">
 
18
                                <radio id="method" label="Method">
 
19
                                        <option value="pearson" label="Pearson"/>
 
20
                                        <option value="kendall" label="Kendall"/>
 
21
                                        <option value="spearman" label="Spearman"/>
 
22
                                </radio>
 
23
                                <radio id="use" label="Exclude missing values">
 
24
                                        <option value="complete.obs" label="whole cases"/>
 
25
                                        <option value="pairwise.complete.obs" label="pairwise" checked="true"/>
 
26
                                </radio>
 
27
                                <spinbox id="digits" label="Precision" type="integer" min="0" max="5" initial="3"/> 
 
28
                                <checkbox id="scale" label="Scale text" value="TRUE" value_unchecked="FALSE" checked="true"/>
 
29
                        </tab>
 
30
                </tabbook>                      
 
31
        </dialog>
 
32
 
 
33
</document>