similar to: the svDialogs package

Displaying 14 results from an estimated 14 matches similar to: "the svDialogs package"

2011 Jun 07
2
[LLVMdev] llvm-gfortran
Hello folks, I want to compile some fortran code to IR, but llvm-gfortran 4.2-2.9 does compile my fortran code. gfortran 4.2.1 fail with the same error. but gfortran 4.4.6 and ifort compiles fine. Attached is the file causing error. Error message is m_List.F90: In function 'exporttostring_': m_List.F90:925: error: conversion to non-scalar type requested I wonder if there any way I can
2011 Jun 07
0
[LLVMdev] llvm-gfortran
On Tue, Jun 7, 2011 at 2:33 PM, Yuanfang Chen <tabloid.adroit at gmail.com> wrote: > Hello folks, > I want to compile some fortran code to IR, but llvm-gfortran 4.2-2.9 does > compile my fortran code. gfortran 4.2.1 fail with the same error. but > gfortran 4.4.6 and ifort compiles fine. Attached is the file causing > error. Error message is > m_List.F90: In function
2009 Nov 05
1
how to collapse list into a matrix with names
Dear R-Helpers, I have the following code: data = read.csv("test.csv",header=T,na.strings="-",row.names=1) myData=as.matrix(data) ##myData is a 102x19 matrix myList = alply(myData, 2,function(x){matrix(x,ncol=6,byrow=T)}) ##myList is a list containing 19 matrices with the following names > names(myList) [1] "*ES" "*ET" "*ER"
2005 Mar 10
4
dealing with package bundles (was RE: Gregmisc)
Given the confusions that some users have regarding package bundles, I'd like to suggest some changes to how package bundles are handled. My understanding is that a package bundle is essentially a convenient way to distribute related packages, so that users can download/install them in one shot. However, some users apparently get confused that one can do install.packages("abundle")
2005 Mar 10
4
dealing with package bundles (was RE: Gregmisc)
Given the confusions that some users have regarding package bundles, I'd like to suggest some changes to how package bundles are handled. My understanding is that a package bundle is essentially a convenient way to distribute related packages, so that users can download/install them in one shot. However, some users apparently get confused that one can do install.packages("abundle")
2008 Jul 05
1
SciViews GUI
HI: After following all the instructions on how to install the SciViews package from CRAN I still can't make the GUI show. Can someone give me a hint on how to do this? I have tried library(svGUI), library(svDialogs) and so on with the rest of the packages. I have also placed all the 'sv' packages in my Rprofile but nothing works. Any help would be appreciated. Thanks Felipe D.
2008 Dec 31
1
Suggestions for inputting a date via a dialog box?
I've written a program which will be run by someone who isn't an R programmer and isn't all that computer-savvy in general. The user starts the program and is prompted to input various information such as location of data files. I've used the Sciviews svDialogs package for this with good success. (although we're still ironing out tck/tk issues on some of his machines - with
2012 Nov 29
0
Fwd: Re: choose folder interactively
Thanks Philippe for your answer! It doesn't work for me, but I guess I have something wrong with Tcl/Tk. Ivan -- Ivan CALANDRA Universit? de Bourgogne UMR CNRS/uB 6282 Biog?osciences 6 Boulevard Gabriel 21000 Dijon, FRANCE +33(0)3.80.39.63.06 ivan.calandra at u-bourgogne.fr http://biogeosciences.u-bourgogne.fr/calandra -------- Message original -------- Sujet: Re: [R] choose folder
2012 Mar 11
1
CRAN (and crantastic) updates this week
CRAN (and crantastic) updates this week New packages ------------ * EffectStars (1.0) Maintainer: Unknown Author(s): Gunther Schauberger License: GPL-2 http://crantastic.org/packages/EffectStars The package provides functions to visualize regression models with categorical response. The effects of the covariates are plotted with star plots in order to allow for an optical
2009 Jun 10
0
License quandry in the Fedora sub-space of all R packages
There was mention of this [r-sig-fedora at r-project.org] mailing list on one of the other R lists overnight. I thought the list needed a bit of posting, as I could not recall seeing content recently on it. I cross post to the Red Hat hosted list as well, it raises issues relevant there as well I have been packaging in support of many of the financial packages at CRAN and in R-Forge [
2007 Mar 26
1
Problem in loading all packages all at once
Hi All Please see the Rprofile file which i have modified as follows and after that when I start R then I see that R says to me "TRUE" for all the packages implying that all loaded at once. But when i try to use commands as simple as help("lm"), it doesnt work nor any of the menu "Packages" is not working. Although the regression using lm ( Y ~ X ) is working
2005 Oct 20
0
[R-gui] R GUI considerations
> From: Philippe Grosjean > > Duncan, > > I agree totally with you on all points, now that we clarified our > respective ideas. I am afraid I probably agree also with your last > point, from a theoretical point-of-view ("I still think we need more > glue and am working on that while we continue to experiment with the > design of GUIs for the next 5 years
2008 Jul 30
1
model mix problem. FALSE CONVERGENCE
Hi R users I try to use the lme but I can?t!!!!! My script is (some words in french, sorry!!): rm(list=ls(all=TRUE)) #Efface tous les objets en m?moire pour ?viter des erreurs library(MASS) #Chargement des Librairies library(car) library(Hmisc) library(tkWidgets) library(svDialogs) library(multtest) library(nlme) #Rep <- "C:/Documents and Settings/U3M/Bureau/steph/Scripts
2005 Oct 16
3
asking the user for data
Hello everyone. How do I get R to ask users for data to be entered? Specifically I want to ask for a z score to be entered (the user would look this up in a table) and then use the entered data to compute a Dunn's post-hoc test (post kruskal.test). I've tried the "ask" function but it's not recognised - maybe I don't have to appropriate libary installed. A pointer