File: fixData.xml

package info (click to toggle)
gedit-r-plugin 0.8.0.2-Gtk3-Python3-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,240 kB
  • ctags: 530
  • sloc: python: 5,016; xml: 562; makefile: 2
file content (29 lines) | stat: -rw-r--r-- 1,035 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!-- Define a rwizard -->
<rwizard name="fixData" description="Edit dataframe or matrix" 
         menu="/Helpers/View and edit" selectionas="V1" icon="selection_editdata.png">
    <about 
        name="Edit dataframe or matrix"
        version="0.1"
        copyright="(c) 2010 Dan Dediu"
        comments="Edit a dataframe or matrix using R's fix() function with a graphic interface"
        license="GLPv3"
        website="http://rgedit.sourceforge.net/"
        authors="Dan Dediu &lt;ddediu@hotmail.com&gt;" 
        documenters=""
        artists=""
        translator_credits=""
        logo_icon_name="selection_editdata.png"/>
        
    <vars>  
        <block title="Please select the keyword to search...">
            <variable name="V1" description="Dataframe/matrix" type="text" default="" required="True"/>
        </block>
        
    </vars>  

    <!-- The actual R code template: only strange thing is the placeholders call using ${PLACEHOLDER_NAME} -->
    <template> 
fix(${V1});
    </template> 

</rwizard>