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 @@ + +
| -activebackground | -activeforeground + + |
| -background or -bg | +-borderwidth or -bd | +
| -disabledforeground | -foreground or -fg | + +
| -highlightbackground | -highlightcolor + + |
| -highlightthickness | -relief + + |
| -repeatdelay | -repeatinterval + + |
| -takefocus | -troughcolor + + |
| -armcommand | -arrowbd + + |
| -arrowrelief | -clean + + |
| -command | -dir + + |
| -disarmcommand | -height + + |
| -helptext | -helptype + + |
| -helpvar | -ipadx + + |
| -ipady | -state + + |
| -type | -width + + |
+ +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. +
+invoke is called when ArrowButton has input focus and user press the space bar. +
+Description text +
+| -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 | +
| -armcommand | +-command | +
| -default | +-disarmcommand | +
| -height | +-helptext | +
| -helptype | +-helpvar | +
| -name | +-relief | +
| -state | +-underline | +
| -width | +
+ +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. +
+invoke is called when Button has input focus and user press the space bar. +
| -background or -bg | +-default |
| -homogeneous | -orient + + |
| -padx | -pady + + |
| -spacing | -state + |
+ +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: +
+
+See Button for description of options. +


![]() |
+
+
+
+ ![]() |
+
+
+
+
+ +
+ + + + + + +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.
+
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
+ + + + + + +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
- |
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 @@ + + + + + + + + + + + + + + + + +

![]() |
+
+
+
+ ![]() |
+
+
+
+
+ +
+ + + + + + +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.
+
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
+ + + + + + +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 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 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 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 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
+
+ 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 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 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
+
+ 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 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 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 
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 
-
-
-
- 
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-install.packages("arvore",repos="http://R-Forge.R-project.org")Development versions, the "latest snapshot", can be acquired below.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 
+
+
+
+ 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+install.packages("arvore",repos="http://R-Forge.R-project.org")Development versions, the "latest snapshot", can be acquired below.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 
+
+
+
+ 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+install.packages("arvore",repos="http://R-Forge.R-project.org")Development versions, the "latest snapshot", can be acquired below.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+