From noreply at r-forge.r-project.org Mon Aug 24 19:25:36 2009 From: noreply at r-forge.r-project.org (noreply at r-forge.r-project.org) Date: Mon, 24 Aug 2009 19:25:36 +0200 (CEST) Subject: [Arvore-commits] r4 - pkg/R Message-ID: <20090824172541.126429CB6B@r-forge.r-project.org> Author: isix Date: 2009-08-24 19:25:33 +0200 (Mon, 24 Aug 2009) New Revision: 4 Modified: pkg/R/arvore.R pkg/R/icer.sim.window.R pkg/R/onGraph.summary.simwindow.R pkg/R/rollback.R Log: Now arvoRe is ActiveState Tcltk independent :) Modified: pkg/R/arvore.R =================================================================== --- pkg/R/arvore.R 2008-08-08 04:37:57 UTC (rev 3) +++ pkg/R/arvore.R 2009-08-24 17:25:33 UTC (rev 4) @@ -1,17 +1,18 @@ -`arvore` <- +arvore <- function(...) { # Se .ArvoReRunning existe, ent?o o ?rvoRe j? est? em execu??o... if (!exists(".ArvoReRunning", envir = globalenv() )) { # ArvoRe Settings library(tcltk) + library(tcltk2) ############################################################################### # THE GAME!! ############################################################################### # Configuration variables .EnvironmentArvoRe <- globalenv() .EnvironmentArvore.Secure <- new.env(parent = globalenv()) - .arvore.version <- "Alfa-0.1.4" # The ArvoRe version - .arvore.release.date <- "June 18, 2008 06:43:29 PM " # The ArvoRe version date + .arvore.version <- "Alfa-0.1.7" # The ArvoRe version + .arvore.release.date <- "March 27, 2009 06:43:29 PM " # The ArvoRe version date .modeltypeArvore <- "CE" # Default calculation method "Simple" # "CEA" .workstatus <- "saved" # File status .opennedfile <- "newfile" # File name @@ -49,12 +50,23 @@ ############################################################################### # The Tk things ############################################################################### - carregaTclpath() # Carrega extens?es da Tcltk - tclRequire("Img") +# carregaTclpath() # Carrega extens?es da Tcltk + for (i in 1:length(.libPaths())) { + icon.but <- file.path(paste(.libPaths()[i],"/arvoRe/icons/New.png",sep="")) + if (file.exists(icon.but)) { + caminho <- file.path(paste(.libPaths()[i],"/arvoRe/tklibs/BWidget_1.8.0",sep="")) + addTclPath(caminho) + caminho <- file.path(paste(.libPaths()[i],"/arvoRe/tklibs/Tktable2.9",sep="")) + addTclPath(caminho) + caminho <- file.path(paste(.libPaths()[i],"/arvoRe/tklibs/Img1.3",sep="")) + addTclPath(caminho) + i <- length(.libPaths()) + 1 # Termina com tudo se j? encontrou + } + } + tclRequire("Tk") # Used in TckTk 8.5 + tclRequire("Img") tclRequire("BWidget") #---------------------------------------------------------------------- - # tclRequire("Tk") # Used in TckTk 8.5 - # Create a new decision tree new.tree() @@ -81,7 +93,7 @@ # Set max and min size to main ArvoRe window tkwm.minsize(tt,640,480) - tkwm.maxsize(tt,1024,768) +# tkwm.maxsize(tt,1024,768) # The Frames frameOverall <- tkframe(tt) @@ -122,30 +134,30 @@ tkadd(topMenu,"cascade",label="Arquivo",menu=fileMenu) editMenu <- tkmenu(topMenu,tearoff=FALSE) - tkadd(editMenu,"command",label="Desfazer",command=function() changedofunction(TheTree, .modeltypeArvore, .EnvironmentArvore.Secure)) - tkadd(editMenu,"command",label="Refazer",command=function() changedofunction(TheTree, .modeltypeArvore, .EnvironmentArvore.Secure)) + tkadd(editMenu,"command",label="Desfazer", command=function() changedofunction(TheTree, .modeltypeArvore, .EnvironmentArvore.Secure)) + tkadd(editMenu,"command",label="Refazer", command=function() changedofunction(TheTree, .modeltypeArvore, .EnvironmentArvore.Secure)) tkadd(editMenu,"separator") - tkadd(editMenu,"command",label="Recortar",command=function() naoimplementado()) - tkadd(editMenu,"command",label="Copiar",command=function() naoimplementado()) - tkadd(editMenu,"command",label="Colar",command=function() naoimplementado()) + tkadd(editMenu,"command",label="Recortar", command=function() naoimplementado()) + tkadd(editMenu,"command",label="Copiar", command=function() naoimplementado()) + tkadd(editMenu,"command",label="Colar", command=function() naoimplementado()) tkadd(editMenu,"separator") - tkadd(editMenu,"command",label="Excluir",command=function() naoimplementado()) + tkadd(editMenu,"command",label="Excluir", command=function() removenodewindows()) tkadd(editMenu,"separator") - tkadd(editMenu,"command",label="Recortar sub-?rvore",command=function() naoimplementado()) - tkadd(editMenu,"command",label="Copiar sub-?rvore",command=function() naoimplementado()) - tkadd(editMenu,"command",label="Colar sub-?rvore",command=function() naoimplementado()) + tkadd(editMenu,"command", state="disabled",label="Recortar sub-?rvore",command=function() naoimplementado()) + tkadd(editMenu,"command", state="disabled",label="Copiar sub-?rvore",command=function() naoimplementado()) + tkadd(editMenu,"command", state="disabled",label="Colar sub-?rvore",command=function() naoimplementado()) tkadd(editMenu,"separator") - tkadd(editMenu,"command",label="Excluir sub-?rvore",command=function() naoimplementado()) + tkadd(editMenu,"command",label="Excluir sub-?rvore", command=function() removenodewindows()) tkadd(editMenu,"separator") - tkadd(editMenu,"command",label="Vari?veis...",command=function() dialog.variable.window()) + tkadd(editMenu,"command",label="Vari?veis...", command=function() dialog.variable.window()) tkadd(editMenu,"separator") - tkadd(editMenu,"command",label="Configura??es",command=function() properties.tree()) + tkadd(editMenu,"command",label="Configura??es", command=function() properties.tree()) tkadd(topMenu,"cascade",label="Editar",menu=editMenu) modelMenu <- tkmenu(topMenu,tearoff=FALSE) - tkadd(modelMenu,"command",label="?rvore de decis?o simples",command=function() set.model.type("SD") ) + tkadd(modelMenu,"command",label="?rvore de decis?o simples", command=function() set.model.type("SD") ) tkadd(modelMenu,"separator") - tkadd(modelMenu,"command",label="?rvore de decis?o Custo-Efetividade",command=function() set.model.type("CE") ) + tkadd(modelMenu,"command",label="?rvore de decis?o Custo-Efetividade", command=function() set.model.type("CE") ) tkadd(topMenu,"cascade",label="Modelo",menu=modelMenu) @@ -319,7 +331,7 @@ icon.but <- file.path(paste(.libPaths()[i],"/arvoRe/icons/Graph.png",sep="")) if (file.exists(icon.but)) { icn <- tkimage.create("photo", file=icon.but) - sa.but <- tkbutton(frameBottons, image=icn, width=.Width.img.but, height=.Height.img.but, command=function() sa.1way.window()) + sa.but <- tkbutton(frameBottons, state="disabled", image=icn, width=.Width.img.but, height=.Height.img.but, command=function() sa.1way.window()) tcl("DynamicHelp::add", sa.but, "-type", "balloon", "-text", "An?lise de Sensibilidade 1-way") } else { sa.but <- tkbutton(frameBottons, text="An?lise de Sensibilidade 1-way", width=.Width.img.but, height=.Height.img.but, command=function() sa.1way.window()) @@ -332,7 +344,7 @@ icon.but <- file.path(paste(.libPaths()[i],"/arvoRe/icons/Graph2.png",sep="")) if (file.exists(icon.but)) { icn <- tkimage.create("photo", file=icon.but) - sa2.but <- tkbutton(frameBottons, image=icn, width=.Width.img.but, height=.Height.img.but, command=function() sa.2way.window()) + sa2.but <- tkbutton(frameBottons, state="disabled", image=icn, width=.Width.img.but, height=.Height.img.but, command=function() sa.2way.window()) tcl("DynamicHelp::add", sa2.but, "-type", "balloon", "-text", "An?lise de Sensibilidade 2-way") } else { sa2.but <- tkbutton(frameBottons, text="An?lise de Sensibilidade 2-way", width=.Width.img.but, height=.Height.img.but, command=function() sa.2way.window()) @@ -418,9 +430,11 @@ # Send treeWidget addres to .EnvironmentArvoRe assign("treeWidget", treeWidget, .EnvironmentArvoRe) - + theTreeTkArvore(TheTree) +# print(" cheguei aqui ") + # The Tree Bottons .Height.but <- 2 .Width.but <- 16 Modified: pkg/R/icer.sim.window.R =================================================================== --- pkg/R/icer.sim.window.R 2008-08-08 04:37:57 UTC (rev 3) +++ pkg/R/icer.sim.window.R 2009-08-24 17:25:33 UTC (rev 4) @@ -132,7 +132,8 @@ 2 * ( Data.alternative.Cost$CovDcDe[i] ) / ( Data.alternative.Effectiveness$Mean[i] / Data.alternative.Cost$Mean[i] ) ) - print(var.icer) +# print(var.icer) + var.icer <- sqrt(var.icer^2) var.icer <- as.numeric(as.character(var.icer)) Modified: pkg/R/onGraph.summary.simwindow.R =================================================================== --- pkg/R/onGraph.summary.simwindow.R 2008-08-08 04:37:57 UTC (rev 3) +++ pkg/R/onGraph.summary.simwindow.R 2009-08-24 17:25:33 UTC (rev 4) @@ -466,7 +466,7 @@ width=.Width.but, height=.Height.but, command = OnDistrib.effectiveness) Distrib.CER.but <- tkbutton(frameDistribution,text = label.but3, width =.Width.but, height=.Height.but, command = OnDistrib.CER) - Distrib.incrementals.but <- tkbutton(frameDistribution, text = label.but4, + Distrib.incrementals.but <- tkbutton(frameDistribution, state = "disabled", text = label.but4, width=.Width.but, height=.Height.but, command = OnDistrib.incrementals) CE.but <- tkbutton(frameOtherGraphs, text = label.but5, width=.Width.but, height=.Height.but, command = function() OnCE.Graph.summary.simwindow(Alltreatmentstable)) Modified: pkg/R/rollback.R =================================================================== --- pkg/R/rollback.R 2008-08-08 04:37:57 UTC (rev 3) +++ pkg/R/rollback.R 2009-08-24 17:25:33 UTC (rev 4) @@ -47,7 +47,7 @@ ans.effectiveness[position, i] <- val.expected.effectiveness } } - ans <- list("CE" = ans.ce, "Cost" = ans.cost, "Effectiveness" = ans.effectiveness) + ans <- list("CE" = ans.cost/ans.effectiveness , "Cost" = ans.cost, "Effectiveness" = ans.effectiveness) return(ans) } From noreply at r-forge.r-project.org Mon Aug 24 19:41:40 2009 From: noreply at r-forge.r-project.org (noreply at r-forge.r-project.org) Date: Mon, 24 Aug 2009 19:41:40 +0200 (CEST) Subject: [Arvore-commits] r5 - in pkg: . tklibs tklibs/BWidget-1.8.0 tklibs/BWidget-1.8.0/BWman tklibs/BWidget-1.8.0/demo tklibs/BWidget-1.8.0/images tklibs/BWidget-1.8.0/lang tklibs/BWidget-1.8.0/tests tklibs/Img1.3 tklibs/Tktable2.9 Message-ID: <20090824174140.D04D29CB5C@r-forge.r-project.org> Author: isix Date: 2009-08-24 19:41:37 +0200 (Mon, 24 Aug 2009) New Revision: 5 Added: pkg/tklibs/ pkg/tklibs/BWidget-1.8.0/ pkg/tklibs/BWidget-1.8.0/BWman/ pkg/tklibs/BWidget-1.8.0/BWman/ArrowButton.html pkg/tklibs/BWidget-1.8.0/BWman/BWidget.html pkg/tklibs/BWidget-1.8.0/BWman/Button.html pkg/tklibs/BWidget-1.8.0/BWman/ButtonBox.html pkg/tklibs/BWidget-1.8.0/BWman/ComboBox.html pkg/tklibs/BWidget-1.8.0/BWman/Dialog.html pkg/tklibs/BWidget-1.8.0/BWman/DragSite.html pkg/tklibs/BWidget-1.8.0/BWman/DropSite.html pkg/tklibs/BWidget-1.8.0/BWman/DynamicHelp.html pkg/tklibs/BWidget-1.8.0/BWman/Entry.html pkg/tklibs/BWidget-1.8.0/BWman/Label.html pkg/tklibs/BWidget-1.8.0/BWman/LabelEntry.html pkg/tklibs/BWidget-1.8.0/BWman/LabelFrame.html pkg/tklibs/BWidget-1.8.0/BWman/ListBox.html pkg/tklibs/BWidget-1.8.0/BWman/MainFrame.html pkg/tklibs/BWidget-1.8.0/BWman/MessageDlg.html pkg/tklibs/BWidget-1.8.0/BWman/NoteBook.html pkg/tklibs/BWidget-1.8.0/BWman/PagesManager.html pkg/tklibs/BWidget-1.8.0/BWman/PanedWindow.html pkg/tklibs/BWidget-1.8.0/BWman/PanelFrame.html pkg/tklibs/BWidget-1.8.0/BWman/PasswdDlg.html pkg/tklibs/BWidget-1.8.0/BWman/ProgressBar.html pkg/tklibs/BWidget-1.8.0/BWman/ProgressDlg.html pkg/tklibs/BWidget-1.8.0/BWman/ScrollView.html pkg/tklibs/BWidget-1.8.0/BWman/ScrollableFrame.html pkg/tklibs/BWidget-1.8.0/BWman/ScrolledWindow.html pkg/tklibs/BWidget-1.8.0/BWman/SelectColor.html pkg/tklibs/BWidget-1.8.0/BWman/SelectFont.html pkg/tklibs/BWidget-1.8.0/BWman/Separator.html pkg/tklibs/BWidget-1.8.0/BWman/SpinBox.html pkg/tklibs/BWidget-1.8.0/BWman/StatusBar.html pkg/tklibs/BWidget-1.8.0/BWman/TitleFrame.html pkg/tklibs/BWidget-1.8.0/BWman/Tree.html pkg/tklibs/BWidget-1.8.0/BWman/Widget.html pkg/tklibs/BWidget-1.8.0/BWman/contents.html pkg/tklibs/BWidget-1.8.0/BWman/index.html pkg/tklibs/BWidget-1.8.0/BWman/navtree.html pkg/tklibs/BWidget-1.8.0/BWman/options.htm pkg/tklibs/BWidget-1.8.0/CHANGES.txt pkg/tklibs/BWidget-1.8.0/ChangeLog pkg/tklibs/BWidget-1.8.0/LICENSE.txt pkg/tklibs/BWidget-1.8.0/README.txt pkg/tklibs/BWidget-1.8.0/arrow.tcl pkg/tklibs/BWidget-1.8.0/bitmap.tcl pkg/tklibs/BWidget-1.8.0/button.tcl pkg/tklibs/BWidget-1.8.0/buttonbox.tcl pkg/tklibs/BWidget-1.8.0/color.tcl pkg/tklibs/BWidget-1.8.0/combobox.tcl pkg/tklibs/BWidget-1.8.0/demo/ pkg/tklibs/BWidget-1.8.0/demo/basic.tcl pkg/tklibs/BWidget-1.8.0/demo/bwidget.xbm pkg/tklibs/BWidget-1.8.0/demo/demo.tcl pkg/tklibs/BWidget-1.8.0/demo/dnd.tcl pkg/tklibs/BWidget-1.8.0/demo/manager.tcl pkg/tklibs/BWidget-1.8.0/demo/select.tcl pkg/tklibs/BWidget-1.8.0/demo/tmpldlg.tcl pkg/tklibs/BWidget-1.8.0/demo/tree.tcl pkg/tklibs/BWidget-1.8.0/demo/x1.xbm pkg/tklibs/BWidget-1.8.0/dialog.tcl pkg/tklibs/BWidget-1.8.0/dragsite.tcl pkg/tklibs/BWidget-1.8.0/dropsite.tcl pkg/tklibs/BWidget-1.8.0/dynhelp.tcl pkg/tklibs/BWidget-1.8.0/entry.tcl pkg/tklibs/BWidget-1.8.0/font.tcl pkg/tklibs/BWidget-1.8.0/images/ pkg/tklibs/BWidget-1.8.0/images/bold.gif pkg/tklibs/BWidget-1.8.0/images/copy.gif pkg/tklibs/BWidget-1.8.0/images/cut.gif pkg/tklibs/BWidget-1.8.0/images/dragfile.gif pkg/tklibs/BWidget-1.8.0/images/dragicon.gif pkg/tklibs/BWidget-1.8.0/images/error.gif pkg/tklibs/BWidget-1.8.0/images/file.gif pkg/tklibs/BWidget-1.8.0/images/folder.gif pkg/tklibs/BWidget-1.8.0/images/hourglass.gif pkg/tklibs/BWidget-1.8.0/images/info.gif pkg/tklibs/BWidget-1.8.0/images/italic.gif pkg/tklibs/BWidget-1.8.0/images/minus.xbm pkg/tklibs/BWidget-1.8.0/images/new.gif pkg/tklibs/BWidget-1.8.0/images/opcopy.xbm pkg/tklibs/BWidget-1.8.0/images/open.gif pkg/tklibs/BWidget-1.8.0/images/openfold.gif pkg/tklibs/BWidget-1.8.0/images/oplink.xbm pkg/tklibs/BWidget-1.8.0/images/opmove.xbm pkg/tklibs/BWidget-1.8.0/images/overstrike.gif pkg/tklibs/BWidget-1.8.0/images/palette.gif pkg/tklibs/BWidget-1.8.0/images/passwd.gif pkg/tklibs/BWidget-1.8.0/images/paste.gif pkg/tklibs/BWidget-1.8.0/images/plus.xbm pkg/tklibs/BWidget-1.8.0/images/print.gif pkg/tklibs/BWidget-1.8.0/images/question.gif pkg/tklibs/BWidget-1.8.0/images/redo.gif pkg/tklibs/BWidget-1.8.0/images/save.gif pkg/tklibs/BWidget-1.8.0/images/target.xbm pkg/tklibs/BWidget-1.8.0/images/underline.gif pkg/tklibs/BWidget-1.8.0/images/undo.gif pkg/tklibs/BWidget-1.8.0/images/warning.gif pkg/tklibs/BWidget-1.8.0/init.tcl pkg/tklibs/BWidget-1.8.0/label.tcl pkg/tklibs/BWidget-1.8.0/labelentry.tcl pkg/tklibs/BWidget-1.8.0/labelframe.tcl pkg/tklibs/BWidget-1.8.0/lang/ pkg/tklibs/BWidget-1.8.0/lang/da.rc pkg/tklibs/BWidget-1.8.0/lang/de.rc pkg/tklibs/BWidget-1.8.0/lang/en.rc pkg/tklibs/BWidget-1.8.0/lang/es.rc pkg/tklibs/BWidget-1.8.0/lang/fr.rc pkg/tklibs/BWidget-1.8.0/listbox.tcl pkg/tklibs/BWidget-1.8.0/mainframe.tcl pkg/tklibs/BWidget-1.8.0/messagedlg.tcl pkg/tklibs/BWidget-1.8.0/notebook.tcl pkg/tklibs/BWidget-1.8.0/pagesmgr.tcl pkg/tklibs/BWidget-1.8.0/panedw.tcl pkg/tklibs/BWidget-1.8.0/panelframe.tcl pkg/tklibs/BWidget-1.8.0/passwddlg.tcl pkg/tklibs/BWidget-1.8.0/pkgIndex.tcl pkg/tklibs/BWidget-1.8.0/progressbar.tcl pkg/tklibs/BWidget-1.8.0/progressdlg.tcl pkg/tklibs/BWidget-1.8.0/scrollframe.tcl pkg/tklibs/BWidget-1.8.0/scrollview.tcl pkg/tklibs/BWidget-1.8.0/scrollw.tcl pkg/tklibs/BWidget-1.8.0/separator.tcl pkg/tklibs/BWidget-1.8.0/spinbox.tcl pkg/tklibs/BWidget-1.8.0/statusbar.tcl pkg/tklibs/BWidget-1.8.0/tests/ pkg/tklibs/BWidget-1.8.0/tests/entry.test pkg/tklibs/BWidget-1.8.0/titleframe.tcl pkg/tklibs/BWidget-1.8.0/tree.tcl pkg/tklibs/BWidget-1.8.0/utils.tcl pkg/tklibs/BWidget-1.8.0/widget.tcl pkg/tklibs/BWidget-1.8.0/wizard.tcl pkg/tklibs/BWidget-1.8.0/xpm2image.tcl pkg/tklibs/Img1.3/ pkg/tklibs/Img1.3/jpegtcl10.dll pkg/tklibs/Img1.3/pkgIndex.tcl pkg/tklibs/Img1.3/pngtcl10.dll pkg/tklibs/Img1.3/tifftcl10.dll pkg/tklibs/Img1.3/tkimg13.dll pkg/tklibs/Img1.3/tkimgbmp13.dll pkg/tklibs/Img1.3/tkimggif13.dll pkg/tklibs/Img1.3/tkimgico13.dll pkg/tklibs/Img1.3/tkimgjpeg13.dll pkg/tklibs/Img1.3/tkimgpcx13.dll pkg/tklibs/Img1.3/tkimgpixmap13.dll pkg/tklibs/Img1.3/tkimgpng13.dll pkg/tklibs/Img1.3/tkimgppm13.dll pkg/tklibs/Img1.3/tkimgps13.dll pkg/tklibs/Img1.3/tkimgsgi13.dll pkg/tklibs/Img1.3/tkimgsun13.dll pkg/tklibs/Img1.3/tkimgtga13.dll pkg/tklibs/Img1.3/tkimgtiff13.dll pkg/tklibs/Img1.3/tkimgwindow13.dll pkg/tklibs/Img1.3/tkimgxbm13.dll pkg/tklibs/Img1.3/tkimgxpm13.dll pkg/tklibs/Img1.3/zlibtcl10.dll pkg/tklibs/Tktable2.9/ pkg/tklibs/Tktable2.9/README.txt pkg/tklibs/Tktable2.9/Tktable29.dll pkg/tklibs/Tktable2.9/license.txt pkg/tklibs/Tktable2.9/pkgIndex.tcl pkg/tklibs/Tktable2.9/tkTable.tcl Log: The TclTk libraries to arvoRe independent... i hope it work now Added: pkg/tklibs/BWidget-1.8.0/BWman/ArrowButton.html =================================================================== --- pkg/tklibs/BWidget-1.8.0/BWman/ArrowButton.html (rev 0) +++ pkg/tklibs/BWidget-1.8.0/BWman/ArrowButton.html 2009-08-24 17:41:37 UTC (rev 5) @@ -0,0 +1,276 @@ + +ArrowButton + +
NAME
+
ArrowButton + - Button widget with an arrow shape. +
+
+
CREATION
+
ArrowButton pathName ?option value...?
+
+
+
STANDARD OPTIONS
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
  -activebackground
  -activeforeground
  -background or -bg  -borderwidth or -bd
  -disabledforeground
  -foreground or -fg
  -highlightbackground
  -highlightcolor
  -highlightthickness
  -relief
  -repeatdelay
  -repeatinterval
  -takefocus
  -troughcolor
+
+
+
WIDGET-SPECIFIC OPTIONS
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
  -armcommand
  -arrowbd
  -arrowrelief
  -clean
  -command
  -dir
  -disarmcommand
  -height
  -helptext
  -helptype
  -helpvar
  -ipadx
  -ipady
  -state
  -type
  -width
+
+
+
WIDGET COMMAND
+
pathName cget + option +
+
pathName configure + ?option? ?value option value ...? +
+
pathName invoke +
+
+


+DESCRIPTION
+

+ +ArrowButton can be of two types following type option: +for button type, it is standard button with an arrow drawn on it; +for arrow type, it is an arrow like scrollbar's arrow. +

+


+WIDGET-SPECIFIC OPTIONS
+
-armcommand
+
+ +Specifies a Tcl command to associate with the ArrowButton when mouse button 1 is pressed +over the ArrowButton. When repeatdelay or repeatinterval option is positive +integer, this command is repeatedly called if mouse pointer is over the button and until +mouse button 1 is released. +
+
+
-arrowbd
+
+ +When ArrowButton type is arrow, specifies the border width of the +arrow. Must be 1 or 2. + +
+
+
-arrowrelief
+
+ +When ArrowButton type is arrow, specifies the relief of the arrow. +Must be raised or sunken. + +
+
+
-clean
+
+ +Specifies a level of quality, between 0 and 2, for the arrow. +If 0, the arrow is drawn with its maximum width and height. +If 1, the base of arrow is arranged to be odd to have same edges. +If 2, the base of arrow is arranged to be odd and the orthogonal to be (base+1)/2 to +have 'straight' diagonal for edges. +
+
+
-command
+
+ +Specifies a Tcl command to associate with the ArrowButton. This command +is typically invoked when mouse button 1 is released over the ArrowButton +window. +
+
+
-dir
+
+ +Specifies the direction of the arrow: top, bottom, left +or right. +
+
+
-disarmcommand
+
+ +Specifies a Tcl command to associate with the ArrowButton when mouse button 1 is released. +This command is called even if pointer is not over the ArrowButton, and always before +the command specified by command option. +It is typically used in conjuntion with armcommand, repeatdelay and +repeatinterval. +
+
+
-height
+
+ +Specifies a desired height for the ArrowButton. The value is in screen units. +
+
+
-helptext
+
+ +Text for dynamic help. If empty, no help is available for this widget. +See also DynamicHelp. +
+
+
-helptype
+
+Type of dynamic help. Use balloon or variable. +See also DynamicHelp. +
+
+
-helpvar
+
+Variable to use when helptype option is variable. +See also DynamicHelp. +
+
+
-ipadx
+
+ +Specifies a minimun pad between the ArrowButton border and the right and left side +of the arrow. The value is in screen units. +
+
+
-ipady
+
+ +Specifies a minimun pad between the ArrowButton border and the top and bottom side +of the arrow. The value is in screen units. +
+
+
-state
+
+ +Specifies one of three states for the ArrowButton: normal, active, +or disabled. +
If ArrowButton type is button:
+
In normal state the ArrowButton is displayed using the +foreground and background options. The active state is +typically used when the pointer is over the ArrowButton. In active state +the ArrowButton is displayed using the activeforeground and +activebackground options. In disabled state the disabledforeground and +background options determine how the ArrowButton is displayed. +
+
If ArrowButton type is arrow:
+
Only colors of arrow change. The background of ArrowButton is always +displayed using troughcolor option. +In normal state the ArrowButton is displayed using the background option. The active +state is typically used when the pointer is over the ArrowButton. In active state +the ArrowButton is displayed using the activebackground option. In disabled state +the ArrowButton is displayed with a dark stipple. +
+
+Disabled state means that the ArrowButton +should be insensitive: the default bindings will refuse to activate +the widget and will ignore mouse button presses. +
+
+
-type
+
+ +Determines the type of the ArrowButton: button for standard button look, or +arrow scrollbar's arrow look. +
+
+
-width
+
+ +Specifies a desired width for the ArrowButton. The value is in screen units. +
+
+

+WIDGET COMMAND
+
pathName cget + option +
+ +Returns the current value of the configuration option given by option. +Option may have any of the values accepted by the creation command. +
+
pathName configure + ?option? ?value option value ...? +
+ +Query or modify the configuration options of the widget. If no option is specified, +returns a list describing all of the available options for pathName. +If option is specified with no value, then the command returns a list +describing the one named option (this list will be identical to the corresponding +sublist of the value returned if no option is specified). If one or +more option-value pairs are specified, then the command modifies the given widget +option(s) to have the given value(s); in this case the command returns an empty string. +Option may have any of the values accepted by the creation command. +Read-only options are not be modified. + +
+
pathName invoke +
+ +If ArrowButton state is not disabled, this invoke the commands of the button. +ArrowButton is redisplayed with active color and sunken relief, and +armcommand is called. Then ArrowButton is redisplayed with +normal color and its defined relief, and disarmcommand then command +are called. +

invoke is called when ArrowButton has input focus and user press the space bar. +

+ Property changes on: pkg/tklibs/BWidget-1.8.0/BWman/ArrowButton.html ___________________________________________________________________ Name: svn:eol-style + native Added: pkg/tklibs/BWidget-1.8.0/BWman/BWidget.html =================================================================== --- pkg/tklibs/BWidget-1.8.0/BWman/BWidget.html (rev 0) +++ pkg/tklibs/BWidget-1.8.0/BWman/BWidget.html 2009-08-24 17:41:37 UTC (rev 5) @@ -0,0 +1,228 @@ + +BWidget + + Under construction ...
+
NAME
+
BWidget + - Description text +
+
+
COMMAND
+
BWidget::XLFDfont + cmd + ?arg...? +
+
BWidget::assert + exp + ?msg? +
+
BWidget::badOptionString + type + value + list +
+
BWidget::bindMouseWheel + widget +
+
BWidget::classes + class +
+
BWidget::clonename + menu +
+
BWidget::focus + option + path +
+
BWidget::get3dcolor + path + bgcolor +
+
BWidget::getname + name +
+
BWidget::grab + option + path +
+
BWidget::inuse + class +
+
BWidget::library + class ?class ...? +
+
BWidget::lreorder + list + neworder +
+
BWidget::parsetext + text +
+
BWidget::place + path + w + h + ?arg...? +
+
BWidget::write + filename ?mode? +
+
BWidget::wrongNumArgsString + string +
+
+


+DESCRIPTION
+

+Description text +

+

+COMMAND
+
BWidget::XLFDfont + cmd + ?arg...? +
+Description text +
+
BWidget::assert + exp + ?msg? +
+Description text +
+
BWidget::badOptionString + type + value + list +
+Return a proper error string for a value of type that doesn't +match list. +
+ +
BWidget::bindMouseWheel + widget +
+ Bind the given widget with the standard mouse wheel bindings. +
+ +
BWidget::classes + class +
+ Returns a list of classes needed by the given class. +
+ +
BWidget::clonename + menu +
+Description text +
+
BWidget::focus + option + path +
+Description text +
+
BWidget::get3dcolor + path + bgcolor +
+Description text +
+
BWidget::getname + name +
+Description text +
+
BWidget::grab + option + path +
+Description text +
+ +
BWidget::inuse + class +
+ Returns true or false if the given class is being used by the + current running program. +
+ +
BWidget::library + class + ?class ...? +
+ Returns a string of code that contains all the libraries needed to + use the widgets given by class. Each class's code and the + code of its dependent classes is appended to the string and returned. + This is mostly useful for saving BWidgets to another project. +
+ +
BWidget::lreorder + list + neworder +
+Description text +
+
BWidget::parsetext + text +
+Description text +
+
BWidget::place + path + w + h + ?arg...? +
+Used to position and resise the widget specified by +path. w and h are used to specify the requested +width and height of the path widget for use by wm +geometry. The placement of the widget relative to other widgets or +the screen is controlled by additional arguments: +
+
at x y
+
Place the widget specified by the path argument at screen + position x,y. See wm geometry for information about window + placement values.
+ +
center ?widget?
+
Place the path widget centered against widget or against the + root widget if widget is not given.
+ +
left ?widget?
+
right ?widget?
+
Place the path widget either left or right of the + reference widget (or the root widget if widget is not + specified). If the reference widget's position is such that the newly + placed window might be obscured then the opposite side will be tried.
+ +
above ?widget?
+
below ?widget?
+
As for left/right above, this option causes the widget to be + placed either above or below the reference widget with the opposite + placement being attempted if the newly placed widget will not be visible. +
+
+ +
BWidget::write + filename + ?mode? +
+ Writes the currently used set of BWidget class code to the given + filename. All the code necessary to run the BWidgets + currently in use is written to the file. This is mostly useful + for saving BWidget code to another project as a single file instead + of the entire BWidget package. +
+ +
+
BWidget::wrongNumArgsString + string +
+
+ Returns a standard error string for the wrong number of arguments. + string is appended to the standard string. +
+
+ + Property changes on: pkg/tklibs/BWidget-1.8.0/BWman/BWidget.html ___________________________________________________________________ Name: svn:eol-style + native Added: pkg/tklibs/BWidget-1.8.0/BWman/Button.html =================================================================== --- pkg/tklibs/BWidget-1.8.0/BWman/Button.html (rev 0) +++ pkg/tklibs/BWidget-1.8.0/BWman/Button.html 2009-08-24 17:41:37 UTC (rev 5) @@ -0,0 +1,273 @@ + +Button + +
NAME
+
Button + - Button widget with enhanced options +
+
+
CREATION
+
Button pathName ?option value...?
+
+
+
STANDARD OPTIONS
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
  -activebackground  -activeforeground
  -anchor  -background or -bg
  -bitmap  -borderwidth or -bd
  -cursor  -disabledforeground
  -font  -foreground or -fg
  -highlightbackground  -highlightcolor
  -highlightthickness  -image
  -justify  -padx
  -pady  -repeatdelay
  -repeatinterval  -takefocus
  -text  -textvariable
  -wraplength
+
+
+
WIDGET-SPECIFIC OPTIONS
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
  -armcommand  -command
  -default  -disarmcommand
  -height  -helptext
  -helptype  -helpvar
  -name  -relief
  -state  -underline
  -width
+
+
+
WIDGET COMMAND
+
pathName cget + option +
+
pathName configure + ?option? ?value option value ...? +
+
pathName invoke +
+
+


+DESCRIPTION
+

+ +Button widget extends the Tk button with new options. +DynamicHelp options, +a new relief style, callback for arm/disarm, and +repeatdelay/repeatinterval options has been added. +

+


+WIDGET-SPECIFIC OPTIONS
+
-armcommand
+
+ +Specifies a Tcl command to associate with the Button when mouse button 1 is pressed over the +Button. When repeatdelay or repeatinterval option is positive integer, +this command is repeatedly called if mouse pointer is over the Button and until mouse +button 1 is released. +
+
+
-command
+
+ +Specifies a Tcl command to associate with the Button. This command +is typically invoked when mouse button 1 is released over the Button +window. +
+
+
-default
+
+ +Specifies one of three states for the default ring: normal, active, +or disabled. In active state, the button is drawn with the platform specific +appearance for a default button. In normal state, the button is drawn with the platform +specific appearance for a non-default button, leaving enough space to draw the default +button appearance. The normal and active states will result in buttons of the same size. +In disabled state, the button is drawn with the non-default button appearance without +leaving space for the default appearance. The disabled state may result +in a smaller button than the active state. +
+
+
-disarmcommand
+
+ +Specifies a Tcl command to associate with the Button when mouse button 1 is released. +This command is called even if pointer is not over the Button, and always before +the command specified by command option. +It is typically used in conjuntion with armcommand, repeatdelay and +repeatinterval. +
+
+
-height
+
+ +Specifies a desired height for the Button. +If an image or bitmap is being displayed in the Button then the value is in +screen units; +for text it is in lines of text. +If this option isn't specified, the Button's desired height is computed +from the size of the image or bitmap or text being displayed in it. +
+
+
-helptext
+
+ +Text for dynamic help. If empty, no help is available for this widget. +See also DynamicHelp. +
+
+
-helptype
+
+Type of dynamic help. Use balloon or variable. +See also DynamicHelp. +
+
+
-helpvar
+
+Variable to use when helptype option is variable. +See also DynamicHelp. +
+
+
-name
+
+ +Specifies a standard name for the button. If the option *nameName is +found in the resources database, then text and underline options +are extracted from its value. + +
+
+
-relief
+
+ +Specifies the 3-D effect desired for the widget. Acceptable values are standard values for +button relief (raised, sunken, flat, ridge, solid, and groove) and link, which specifies that button relief is flat when pointer +is outside the button and raised when pointer is inside. +
+
+
-state
+
+ +Specifies one of three states for the Button: normal, active, +or disabled. In normal state the Button is displayed using the +foreground and background options. The active state is +typically used when the pointer is over the Button. In active state +the Button is displayed using the activeforeground and +activebackground options. Disabled state means that the Button +should be insensitive: the default bindings will refuse to activate +the widget and will ignore mouse button presses. +In this state the disabledforeground and +background options determine how the Button is displayed. +
+
+
-underline
+
+ +Specifies the integer index of a character to underline in the label of the button. +0 corresponds to the first character of the text displayed, 1 to the next character, +and so on. +
The binding <Alt-char> is automatically set on the toplevel +of the Button to call Button::setfocus. + +
+
+
-width
+
+ +If an image or bitmap is being displayed in the Button then the value is in +screen units; +for text it is in characters. +If this option isn't specified, the Button's desired width is computed +from the size of the image or bitmap or text being displayed in it. +
+
+

+WIDGET COMMAND
+
pathName cget + option +
+ +Returns the current value of the configuration option given by option. +Option may have any of the values accepted by the creation command. +
+
pathName configure + ?option? ?value option value ...? +
+ +Query or modify the configuration options of the widget. If no option is specified, +returns a list describing all of the available options for pathName. +If option is specified with no value, then the command returns a list +describing the one named option (this list will be identical to the corresponding +sublist of the value returned if no option is specified). If one or +more option-value pairs are specified, then the command modifies the given widget +option(s) to have the given value(s); in this case the command returns an empty string. +Option may have any of the values accepted by the creation command. +Read-only options are not be modified. + +
+
pathName invoke +
+ +If Button state is not disabled, this invoke the commands of the Button. +Button is redisplayed with active color and sunken relief, and +armcommand is called. Then Button is redisplayed with +normal color and its defined relief, and disarmcommand then command +are called. +

invoke is called when Button has input focus and user press the space bar. +

+ Property changes on: pkg/tklibs/BWidget-1.8.0/BWman/Button.html ___________________________________________________________________ Name: svn:eol-style + native Added: pkg/tklibs/BWidget-1.8.0/BWman/ButtonBox.html =================================================================== --- pkg/tklibs/BWidget-1.8.0/BWman/ButtonBox.html (rev 0) +++ pkg/tklibs/BWidget-1.8.0/BWman/ButtonBox.html 2009-08-24 17:41:37 UTC (rev 5) @@ -0,0 +1,264 @@ + +ButtonBox + +
NAME
+
ButtonBox + - Set of buttons with horizontal or vertical layout +
+
+
CREATION
+
ButtonBox pathName ?option value...?
+
+
+
WIDGET-SPECIFIC OPTIONS
+
+ + + + + + + + + + + + + + + +
  -background or -bg  -default
  -homogeneous
  -orient
  -padx
  -pady
  -spacing
  -state
+
+
+
WIDGET COMMAND
+
pathName add + ?option value...? +
+
pathName cget + option +
+
pathName configure + ?option? ?value option value ...? +
+
pathName delete + index +
+
pathName index + index +
+
pathName insert + index ?option value...? +
+
pathName invoke + index +
+
pathName itemcget + index + option +
+
pathName itemconfigure + index + ?option? ?value option value ...? +
+
pathName setfocus + index +
+
+


+DESCRIPTION
+

+ +ButtonBox layouts Button horizontally or vertically. +Some commands take an index as argument indicating on which +Button it work. This index may be specified in any of the following forms: +

+

+
+number +
+Specifies the Button numerically, where 0 corresponds +to the first added Button, 1 to the next, and so on. +
+end or last +
+Indicates the last item added. +
default +
+Indicates the default Button. + +
+name +
+Indicates the button whose -name option is name. + +
+text +
+Indicates the button whose -text option is text. +
+ +

+


+WIDGET-SPECIFIC OPTIONS
+
-background
+
+ +Specifies a default background color for all added buttons and for the frame. + +
+
+
-default
+
+ +Specifies the default button of the button box. The value is an integer +referencing the n-th added button, starting from 0. +If this value is -1 (the default), all button wil be drawn with their -default +option set to disabled, and this value can not be changed.
If this value is +not -1, the associated button is drawn with -default option set to active and +the others are drawn with -default option set to normal. The value can be changed +by configure. + +
+
+
-homogeneous (read-only)
+
+ +Specifies wether or not buttons must have the same width for horizontal layout. + +
+
+
-orient (read-only)
+
+ +Specifies the orientation of the button box. If this option is horizontal +(the default), buttons are added from top to bottom. +If this option is vertical, buttons are added from left to right. + +
+
+
-padx
+
+ +Specifies a default value for the -padx option of all added buttons. + +
+
+
-pady
+
+ +Specifies a default value for the -pady option of all added buttons. + +
+
+
-spacing
+
+ +Specifies the default spacing between buttons. This value can be changed before each +call to add. + +
+
+ +
-state
+
+ +Specifies a state for all the buttons in the button box. Can be any state supported by buttons. + +
+
+ +

+WIDGET COMMAND
+
pathName add + ?option value...? +
+ +Add a button to the button box. +

+See Button for description of options. +

+
pathName cget + option +
+ +Returns the current value of the configuration option given by option. +Option may have any of the values accepted by the creation command. +
[TRUNCATED] To get the complete diff run: svnlook diff /svnroot/arvore -r 5 From noreply at r-forge.r-project.org Mon Aug 24 20:17:12 2009 From: noreply at r-forge.r-project.org (noreply at r-forge.r-project.org) Date: Mon, 24 Aug 2009 20:17:12 +0200 (CEST) Subject: [Arvore-commits] r6 - in www: . binario imagens outros source Message-ID: <20090824181712.929D99C7EC@r-forge.r-project.org> Author: isix Date: 2009-08-24 20:17:12 +0200 (Mon, 24 Aug 2009) New Revision: 6 Added: www/ArvoReletras.png www/arvore.png www/binario/ www/binario/arvoRe_0.1.7.zip www/brasileiro.gif www/imagens/ www/imagens/ArvoReletras.png www/imagens/Espanhol.gif www/imagens/Thumbs.db www/imagens/arvore.png www/imagens/arvoreletras.pspimage www/imagens/bolinha.png www/imagens/br-t.gif www/imagens/brasileiro.gif www/imagens/deutsche.gif www/imagens/en.gif www/imagens/en_lang.gif www/imagens/ingles.gif www/imagens/logo_Rforge.png www/imagens/mc.gif www/imagens/p.gif www/imagens/pspbrwse.jbf www/imagens/visa.gif www/index.html www/index_en.html www/index_old.php www/index_ptBR.html www/ingles.gif www/logo_Rforge.png www/outros/ www/outros/TCCarticle.pdf www/source/ www/source/arvoRe_0.1.7.tar.gz Removed: www/index.php Log: The arvoRe package webpage Added: www/ArvoReletras.png =================================================================== (Binary files differ) Property changes on: www/ArvoReletras.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: www/arvore.png =================================================================== (Binary files differ) Property changes on: www/arvore.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: www/binario/arvoRe_0.1.7.zip =================================================================== (Binary files differ) Property changes on: www/binario/arvoRe_0.1.7.zip ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: www/brasileiro.gif =================================================================== (Binary files differ) Property changes on: www/brasileiro.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: www/imagens/ArvoReletras.png =================================================================== (Binary files differ) Property changes on: www/imagens/ArvoReletras.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: www/imagens/Espanhol.gif =================================================================== (Binary files differ) Property changes on: www/imagens/Espanhol.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: www/imagens/Thumbs.db =================================================================== (Binary files differ) Property changes on: www/imagens/Thumbs.db ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: www/imagens/arvore.png =================================================================== (Binary files differ) Property changes on: www/imagens/arvore.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: www/imagens/arvoreletras.pspimage =================================================================== (Binary files differ) Property changes on: www/imagens/arvoreletras.pspimage ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: www/imagens/bolinha.png =================================================================== (Binary files differ) Property changes on: www/imagens/bolinha.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: www/imagens/br-t.gif =================================================================== (Binary files differ) Property changes on: www/imagens/br-t.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: www/imagens/brasileiro.gif =================================================================== (Binary files differ) Property changes on: www/imagens/brasileiro.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: www/imagens/deutsche.gif =================================================================== (Binary files differ) Property changes on: www/imagens/deutsche.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: www/imagens/en.gif =================================================================== (Binary files differ) Property changes on: www/imagens/en.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: www/imagens/en_lang.gif =================================================================== (Binary files differ) Property changes on: www/imagens/en_lang.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: www/imagens/ingles.gif =================================================================== (Binary files differ) Property changes on: www/imagens/ingles.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: www/imagens/logo_Rforge.png =================================================================== (Binary files differ) Property changes on: www/imagens/logo_Rforge.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: www/imagens/mc.gif =================================================================== (Binary files differ) Property changes on: www/imagens/mc.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: www/imagens/p.gif =================================================================== (Binary files differ) Property changes on: www/imagens/p.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: www/imagens/pspbrwse.jbf =================================================================== (Binary files differ) Property changes on: www/imagens/pspbrwse.jbf ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: www/imagens/visa.gif =================================================================== (Binary files differ) Property changes on: www/imagens/visa.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: www/index.html =================================================================== --- www/index.html (rev 0) +++ www/index.html 2009-08-24 18:17:12 UTC (rev 6) @@ -0,0 +1,606 @@ + + + + + + + + + + + + + + + + + ?rvoRe - Cost-Effectiveness to R + + + + + + + + + + + + + + + + + + + + + + + + + + + +
?rvoRe
+ + + + + + +
+ + + + + + +
?rvore title
+ + + + + + +
+ + + +
Language
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Vers?o em Portugu?s brasileiroEnglish version
+ + + +
+ + + +    
+ + + + + +
+ + + +

+ +

+ + + + + + +

The ArvoRe package is a Cost-effectiveness Analysis (CEA) implementation for R +oriented to compute problems that involve simple decision tree models +and Markov models. It offer a graphic user interface (GUI) developed in +Tcl/Tk. This graphical interface simplifies the decision tree creation +task and its manipulation, such as, nodes addition, probability values +definition, node kind configuration, etc.
+ + + +

+ + + + + + + + +

Graphics, +tables and important summary statistics for the ACE are available +trough of windows, the which ones concentrate them in an unique +location. All graphics and decision tree can be exported to image files +using PNG, JPG and BMP format. Some tables with summary statistics of +an CEA problem in this package can be exported for files in the format +CSV (comma separated values) or TXT (text plain). Other important ArvoRe +implementation is the CEA problems solution that involve Markov chains. +These problems are solved by means of first order Monte Carlo +simulation. A model created to a Cost-effectiveness problem in the ArvoRe +can be saved in a file with extension ARV. The main user preferences +settings - as kind of tree to be exhibited, definitions that should be +also exhibited are conserved in this extension file ARV.
+ + + +

+ + + + + + +

REQUIREMENTS

+ + + + + + + + + + + + + +
+ +

To run ArvoRe is necessary R version 2.6.2 or superior version.
+ + + +

+ + + + + + + +
+ + + + + + + + + + + + + +
+ +

ArvoRe requires R version 2.6.2 or newer and some packages: abind, grid, gplots tcltk and tcltk2. This +packages must be installed in your system. These packages can be +downloaded from Comprehensive R Archive Network, CRAN http://www.R-project.org +. 

+ + + + + + + +

+

DEVELOPMENT

+ + + + + + +

ArvoRe package +is developed through a SVN's System in R-Forge. Anybody can contribute +with improvement and/or development of code. Visit ArvoRe project page.

+ + + + +

A more recent and unstable copy of this package can be directly installed in the R using the command

+ + + + +

install.packages("arvore",repos="http://R-Forge.R-project.org")

+ + + + +

Development versions, the "latest snapshot", can be acquired below.

+ + + + +

scm-latest.tar.gz

+ + + + +

+
+

REFERENCE / HELP

+ + + + + + +

You can read the paper "Implementa??o de uma interface gr?fica para An?lise de Custo Efetividade no R" to solve instalation problems and know more about Cost-Effectiveness Analysis.

+

+

DOWNLOAD

+ + + + + + +

Binary (Windows)

+ + + + + + + + + + + + + +

Source code

+ + + + + + + + + + + + + +
+ + + + + + +
CONTACT
+ + + + + + + + +

Isa?as Prestes, +Suzi Camey

+ + + + + + + + +

Departamento de +Estat?stica

+ + + + + + + + +

Universidade +Federal do Rio Grande do Sul

+ + + + + + + + +

Rio Grande do Sul, +Porto Alegre

+ + + + + + + + +

Brasil Av. Bento +Gon?alves, 9500

+ + + + + + + + +E-mail: +isaias.prestes at gmail.com, +camey at ufrgs.br
+ + + + +
+ + + + +
+ + + + +
+
R-Forge logo
+ + + + +
+ + + + + + +
+ + + + + + +
+ + + + + +
+ + + + + + +
+
+
August 04, 2008 09:38:28 PM
+ + + + + + +
+ + + + + + +

+ + + + + + + + \ No newline at end of file Deleted: www/index.php =================================================================== --- www/index.php 2009-08-24 17:41:37 UTC (rev 5) +++ www/index.php 2009-08-24 18:17:12 UTC (rev 6) @@ -1,51 +0,0 @@ - - - - -'; -?> - - - - - - <?php echo $group_name; ?> - - - - - - - - -
-R-Forge Logo
- - - - - - - - - -

No content added.

- -

The project summary page you can find here.

- - - Added: www/index_en.html =================================================================== --- www/index_en.html (rev 0) +++ www/index_en.html 2009-08-24 18:17:12 UTC (rev 6) @@ -0,0 +1,606 @@ + + + + + + + + + + + + + + + + + ?rvoRe - Cost-Effectiveness to R + + + + + + + + + + + + + + + + + + + + + + + + + + + +
?rvoRe
+ + + + + + +
+ + + + + + +
?rvore title
+ + + + + + +
+ + + +
Language
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Vers?o em Portugu?s brasileiroEnglish version
+ + + +
+ + + +    
+ + + + + +
+ + + +

+ +

+ + + + + + +

The ArvoRe package is a Cost-effectiveness Analysis (CEA) implementation for R +oriented to compute problems that involve simple decision tree models +and Markov models. It offer a graphic user interface (GUI) developed in +Tcl/Tk. This graphical interface simplifies the decision tree creation +task and its manipulation, such as, nodes addition, probability values +definition, node kind configuration, etc.
+ + + +

+ + + + + + + + +

Graphics, +tables and important summary statistics for the ACE are available +trough of windows, the which ones concentrate them in an unique +location. All graphics and decision tree can be exported to image files +using PNG, JPG and BMP format. Some tables with summary statistics of +an CEA problem in this package can be exported for files in the format +CSV (comma separated values) or TXT (text plain). Other important ArvoRe +implementation is the CEA problems solution that involve Markov chains. +These problems are solved by means of first order Monte Carlo +simulation. A model created to a Cost-effectiveness problem in the ArvoRe +can be saved in a file with extension ARV. The main user preferences +settings - as kind of tree to be exhibited, definitions that should be +also exhibited are conserved in this extension file ARV.
+ + + +

+ + + + + + +

REQUIREMENTS

+ + + + + + + + + + + + + +
+ +

To run ArvoRe is necessary R version 2.6.2 or superior version.
+ + + +

+ + + + + + + +
+ + + + + + + + + + + + + +
+ +

ArvoRe requires R version 2.6.2 or newer and some packages: abind, grid, gplots tcltk and tcltk2. This +packages must be installed in your system. These packages can be +downloaded from Comprehensive R Archive Network, CRAN http://www.R-project.org +. 

+ + + + + + + +

+

DEVELOPMENT

+ + + + + + +

ArvoRe package +is developed through a SVN's System in R-Forge. Anybody can contribute +with improvement and/or development of code. Visit ArvoRe project page.

+ + + + +

A more recent and unstable copy of this package can be directly installed in the R using the command

+ + + + +

install.packages("arvore",repos="http://R-Forge.R-project.org")

+ + + + +

Development versions, the "latest snapshot", can be acquired below.

+ + + + +

scm-latest.tar.gz

+ + + + +

+
+

REFERENCE / HELP

+ + + + + + +

You can read the paper "Implementa??o de uma interface gr?fica para An?lise de Custo Efetividade no R" to solve instalation problems and know more about Cost-Effectiveness Analysis.

+

+

DOWNLOAD

+ + + + + + +

Binary (Windows)

+ + + + + + + + + + + + + +

Source code

+ + + + + + + + + + + + + +
+ + + + + + +
CONTACT
+ + + + + + + + +

Isa?as Prestes, +Suzi Camey

+ + + + + + + + +

Departamento de +Estat?stica

+ + + + + + + + +

Universidade [TRUNCATED] To get the complete diff run: svnlook diff /svnroot/arvore -r 6 From noreply at r-forge.r-project.org Mon Aug 24 20:21:30 2009 From: noreply at r-forge.r-project.org (noreply at r-forge.r-project.org) Date: Mon, 24 Aug 2009 20:21:30 +0200 (CEST) Subject: [Arvore-commits] r7 - www Message-ID: <20090824182130.559809CB5C@r-forge.r-project.org> Author: isix Date: 2009-08-24 20:21:30 +0200 (Mon, 24 Aug 2009) New Revision: 7 Removed: www/index.html Log: Main page change Deleted: www/index.html =================================================================== --- www/index.html 2009-08-24 18:17:12 UTC (rev 6) +++ www/index.html 2009-08-24 18:21:30 UTC (rev 7) @@ -1,606 +0,0 @@ - - - - - - - - - - - - - - - - - ?rvoRe - Cost-Effectiveness to R - - - - - - - - - - - - - - - - - - - - - - - - - - - -

?rvoRe
- - - - - - -
- - - - - - -
?rvore title
- - - - - - -
- - - -
Language
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Vers?o em Portugu?s brasileiroEnglish version
- - - -
- - - -    
- - - - - -
- - - -

- -

- - - - - - -

The ArvoRe package is a Cost-effectiveness Analysis (CEA) implementation for R -oriented to compute problems that involve simple decision tree models -and Markov models. It offer a graphic user interface (GUI) developed in -Tcl/Tk. This graphical interface simplifies the decision tree creation -task and its manipulation, such as, nodes addition, probability values -definition, node kind configuration, etc.
- - - -

- - - - - - - - -

Graphics, -tables and important summary statistics for the ACE are available -trough of windows, the which ones concentrate them in an unique -location. All graphics and decision tree can be exported to image files -using PNG, JPG and BMP format. Some tables with summary statistics of -an CEA problem in this package can be exported for files in the format -CSV (comma separated values) or TXT (text plain). Other important ArvoRe -implementation is the CEA problems solution that involve Markov chains. -These problems are solved by means of first order Monte Carlo -simulation. A model created to a Cost-effectiveness problem in the ArvoRe -can be saved in a file with extension ARV. The main user preferences -settings - as kind of tree to be exhibited, definitions that should be -also exhibited are conserved in this extension file ARV.
- - - -

- - - - - - -

REQUIREMENTS

- - - - - - - - - - - - - -
- -

To run ArvoRe is necessary R version 2.6.2 or superior version.
- - - -

- - - - - - - -
- - - - - - - - - - - - - -
- -

ArvoRe requires R version 2.6.2 or newer and some packages: abind, grid, gplots tcltk and tcltk2. This -packages must be installed in your system. These packages can be -downloaded from Comprehensive R Archive Network, CRAN http://www.R-project.org -. 

- - - - - - - -

-

DEVELOPMENT

- - - - - - -

ArvoRe package -is developed through a SVN's System in R-Forge. Anybody can contribute -with improvement and/or development of code. Visit ArvoRe project page.

- - - - -

A more recent and unstable copy of this package can be directly installed in the R using the command

- - - - -

install.packages("arvore",repos="http://R-Forge.R-project.org")

- - - - -

Development versions, the "latest snapshot", can be acquired below.

- - - - -

scm-latest.tar.gz

- - - - -

-
-

REFERENCE / HELP

- - - - - - -

You can read the paper "Implementa??o de uma interface gr?fica para An?lise de Custo Efetividade no R" to solve instalation problems and know more about Cost-Effectiveness Analysis.

-

-

DOWNLOAD

- - - - - - -

Binary (Windows)

- - - - - - - - - - - - - -

Source code

- - - - - - - - - - - - - -
- - - - - - -
CONTACT
- - - - - - - - -

Isa?as Prestes, -Suzi Camey

- - - - - - - - -

Departamento de -Estat?stica

- - - - - - - - -

Universidade -Federal do Rio Grande do Sul

- - - - - - - - -

Rio Grande do Sul, -Porto Alegre

- - - - - - - - -

Brasil Av. Bento -Gon?alves, 9500

- - - - - - - - -E-mail: -isaias.prestes at gmail.com, -camey at ufrgs.br
- - - - -
- - - - -
- - - - -
-
R-Forge logo
- - - - -
- - - - - - -
- - - - - - -
- - - - - -
- - - - - - -
-
-
August 04, 2008 09:38:28 PM
- - - - - - -
- - - - - - -

- - - - - - - - \ No newline at end of file From noreply at r-forge.r-project.org Mon Aug 24 20:26:29 2009 From: noreply at r-forge.r-project.org (noreply at r-forge.r-project.org) Date: Mon, 24 Aug 2009 20:26:29 +0200 (CEST) Subject: [Arvore-commits] r8 - www Message-ID: <20090824182629.48C719CB2D@r-forge.r-project.org> Author: isix Date: 2009-08-24 20:26:29 +0200 (Mon, 24 Aug 2009) New Revision: 8 Added: www/index.php Log: Done! Copied: www/index.php (from rev 6, www/index.html) =================================================================== --- www/index.php (rev 0) +++ www/index.php 2009-08-24 18:26:29 UTC (rev 8) @@ -0,0 +1,606 @@ + + + + + + + + + + + + + + + + + ?rvoRe - Cost-Effectiveness to R + + + + + + + + + + + + + + + + + + + + + + + + + + + +
?rvoRe
+ + + + + + +
+ + + + + + +
?rvore title
+ + + + + + +
+ + + +
Language
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Vers?o em Portugu?s brasileiroEnglish version
+ + + +
+ + + +    
+ + + + + +
+ + + +

+ +

+ + + + + + +

The ArvoRe package is a Cost-effectiveness Analysis (CEA) implementation for R +oriented to compute problems that involve simple decision tree models +and Markov models. It offer a graphic user interface (GUI) developed in +Tcl/Tk. This graphical interface simplifies the decision tree creation +task and its manipulation, such as, nodes addition, probability values +definition, node kind configuration, etc.
+ + + +

+ + + + + + + + +

Graphics, +tables and important summary statistics for the ACE are available +trough of windows, the which ones concentrate them in an unique +location. All graphics and decision tree can be exported to image files +using PNG, JPG and BMP format. Some tables with summary statistics of +an CEA problem in this package can be exported for files in the format +CSV (comma separated values) or TXT (text plain). Other important ArvoRe +implementation is the CEA problems solution that involve Markov chains. +These problems are solved by means of first order Monte Carlo +simulation. A model created to a Cost-effectiveness problem in the ArvoRe +can be saved in a file with extension ARV. The main user preferences +settings - as kind of tree to be exhibited, definitions that should be +also exhibited are conserved in this extension file ARV.
+ + + +

+ + + + + + +

REQUIREMENTS

+ + + + + + + + + + + + + +
+ +

To run ArvoRe is necessary R version 2.6.2 or superior version.
+ + + +

+ + + + + + + +
+ + + + + + + + + + + + + +
+ +

ArvoRe requires R version 2.6.2 or newer and some packages: abind, grid, gplots tcltk and tcltk2. This +packages must be installed in your system. These packages can be +downloaded from Comprehensive R Archive Network, CRAN http://www.R-project.org +. 

+ + + + + + + +

+

DEVELOPMENT

+ + + + + + +

ArvoRe package +is developed through a SVN's System in R-Forge. Anybody can contribute +with improvement and/or development of code. Visit ArvoRe project page.

+ + + + +

A more recent and unstable copy of this package can be directly installed in the R using the command

+ + + + +

install.packages("arvore",repos="http://R-Forge.R-project.org")

+ + + + +

Development versions, the "latest snapshot", can be acquired below.

+ + + + +

scm-latest.tar.gz

+ + + + +

+
+

REFERENCE / HELP

+ + + + + + +

You can read the paper "Implementa??o de uma interface gr?fica para An?lise de Custo Efetividade no R" to solve instalation problems and know more about Cost-Effectiveness Analysis.

+

+

DOWNLOAD

+ + + + + + +

Binary (Windows)

+ + + + + + + + + + + + + +

Source code

+ + + + + + + + + + + + + +
+ + + + + + +
CONTACT
+ + + + + + + + +

Isa?as Prestes, +Suzi Camey

+ + + + + + + + +

Departamento de +Estat?stica

+ + + + + + + + +

Universidade +Federal do Rio Grande do Sul

+ + + + + + + + +

Rio Grande do Sul, +Porto Alegre

+ + + + + + + + +

Brasil Av. Bento +Gon?alves, 9500

+ + + + + + + + +E-mail: +isaias.prestes at gmail.com, +camey at ufrgs.br
+ + + + +
+ + + + +
+ + + + +
+
R-Forge logo
+ + + + +
+ + + + + + +
+ + + + + + +
+ + + + + +
+ + + + + + +
+
+
August 04, 2008 09:38:28 PM
+ + + + + + +
+ + + + + + +

+ + + + + + + + \ No newline at end of file From noreply at r-forge.r-project.org Mon Aug 24 20:28:52 2009 From: noreply at r-forge.r-project.org (noreply at r-forge.r-project.org) Date: Mon, 24 Aug 2009 20:28:52 +0200 (CEST) Subject: [Arvore-commits] r9 - www Message-ID: <20090824182852.E46BF9CB2D@r-forge.r-project.org> Author: isix Date: 2009-08-24 20:28:51 +0200 (Mon, 24 Aug 2009) New Revision: 9 Added: www/index.html Log: Copied: www/index.html (from rev 6, www/index_en.html) =================================================================== --- www/index.html (rev 0) +++ www/index.html 2009-08-24 18:28:51 UTC (rev 9) @@ -0,0 +1,606 @@ + + + + + + + + + + + + + + + + + ?rvoRe - Cost-Effectiveness to R + + + + + + + + + + + + + + + + + + + + + + + + + + + +
?rvoRe
+ + + + + + +
+ + + + + + +
?rvore title
+ + + + + + +
+ + + +
Language
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Vers?o em Portugu?s brasileiroEnglish version
+ + + +
+ + + +    
+ + + + + +
+ + + +

+ +

+ + + + + + +

The ArvoRe package is a Cost-effectiveness Analysis (CEA) implementation for R +oriented to compute problems that involve simple decision tree models +and Markov models. It offer a graphic user interface (GUI) developed in +Tcl/Tk. This graphical interface simplifies the decision tree creation +task and its manipulation, such as, nodes addition, probability values +definition, node kind configuration, etc.
+ + + +

+ + + + + + + + +

Graphics, +tables and important summary statistics for the ACE are available +trough of windows, the which ones concentrate them in an unique +location. All graphics and decision tree can be exported to image files +using PNG, JPG and BMP format. Some tables with summary statistics of +an CEA problem in this package can be exported for files in the format +CSV (comma separated values) or TXT (text plain). Other important ArvoRe +implementation is the CEA problems solution that involve Markov chains. +These problems are solved by means of first order Monte Carlo +simulation. A model created to a Cost-effectiveness problem in the ArvoRe +can be saved in a file with extension ARV. The main user preferences +settings - as kind of tree to be exhibited, definitions that should be +also exhibited are conserved in this extension file ARV.
+ + + +

+ + + + + + +

REQUIREMENTS

+ + + + + + + + + + + + + +
+ +

To run ArvoRe is necessary R version 2.6.2 or superior version.
+ + + +

+ + + + + + + +
+ + + + + + + + + + + + + +
+ +

ArvoRe requires R version 2.6.2 or newer and some packages: abind, grid, gplots tcltk and tcltk2. This +packages must be installed in your system. These packages can be +downloaded from Comprehensive R Archive Network, CRAN http://www.R-project.org +. 

+ + + + + + + +

+

DEVELOPMENT

+ + + + + + +

ArvoRe package +is developed through a SVN's System in R-Forge. Anybody can contribute +with improvement and/or development of code. Visit ArvoRe project page.

+ + + + +

A more recent and unstable copy of this package can be directly installed in the R using the command

+ + + + +

install.packages("arvore",repos="http://R-Forge.R-project.org")

+ + + + +

Development versions, the "latest snapshot", can be acquired below.

+ + + + +

scm-latest.tar.gz

+ + + + +

+
+

REFERENCE / HELP

+ + + + + + +

You can read the paper "Implementa??o de uma interface gr?fica para An?lise de Custo Efetividade no R" to solve instalation problems and know more about Cost-Effectiveness Analysis.

+

+

DOWNLOAD

+ + + + + + +

Binary (Windows)

+ + + + + + + + + + + + + +

Source code

+ + + + + + + + + + + + + +
+ + + + + + +
CONTACT
+ + + + + + + + +

Isa?as Prestes, +Suzi Camey

+ + + + + + + + +

Departamento de +Estat?stica

+ + + + + + + + +

Universidade +Federal do Rio Grande do Sul

+ + + + + + + + +

Rio Grande do Sul, +Porto Alegre

+ + + + + + + + +

Brasil Av. Bento +Gon?alves, 9500

+ + + + + + + + +E-mail: +isaias.prestes at gmail.com, +camey at ufrgs.br
+ + + + +
+ + + + +
+ + + + +
+
R-Forge logo
+ + + + +
+ + + + + + +
+ + + + + + +
+ + + + + +
+ + + + + + +
+
+
August 04, 2008 09:38:28 PM
+ + + + + + +
+ + + + + + +

+ + + + + + + + \ No newline at end of file