similar to: show messages during a long process

Displaying 20 results from an estimated 10000 matches similar to: "show messages during a long process"

2002 Apr 11
6
extract week from date
Hello R-users, Does anyone know how obtain the week of a date? (in SPPS the instruction is "xdate.week") Thanks, Juan Ramon -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the
2002 Sep 23
3
Problems with tcltk package
Hello listers, I have installed Tcl/Tk v8.4 on my system (Win XP, R 1.5.1). When I try to load the Tcl/Tk package I get this error: > library(tcltk) Error in firstlib(which.lib.loc, package) : TCL_LIBRARY is not set Error in library(tcltk) : .First.lib failed Can someone help me, please? Thanks, Juan -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
2002 May 03
6
problems with rexp ?
Does anyone know if R have any problems with the exponential random number generation (function rexp)? I comment it because I executed data<-sort(rexp(100)) plot(data,dexp(data)/(1-pexp(data)),type="l") and the graphic isn't constant. (Note: exponential distribution have a constant hazard failure rate). Thank you, Juan
2002 Jun 10
3
%in% in R?
Hi, Does anyone know if exists a similar funcion to %in% from Hmisc S-plus library in R? Thank you -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at
2002 Jun 18
5
insert number in vector
Hello R-users, I need to create a vector inserting an 1 after each value of another vector. For example: vec1<-c(2,3,4) I need to create a vector with the values 2,1,3,1,4 Does anyone know how create this vector without loops (vec1 could have 1000 elements) Thank you, Juan -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read
2005 Feb 10
1
rats in survival package
Dear R-listers, Does anybody know what is the correct source of "rats" dataset in survival package? The help gives the following information: Rat data from survival5 Description: 48 rats were injected with a carcinogen, and then randomized to either drug or placebo. The number of tumors ranges from 0 to 13; all rats were censored at 6 months after randomization.
2003 Oct 01
1
Acces violation ???
Dear R-listers, I have created a "dll" and I call it from a R function. However R stops and shows the message: "Unhandled exception in Rgui.exe (R.DLL): 0xC0000005: Access Violation" I get this error in other situations and I solved it verifying that all parameters are called fine. (e.g., double precision -> as.double, integer -> as.integer,...). I have verify this.
2003 Jan 14
2
graphics landscape orientation
Hello listers, I would like to know how I can get the resulting graphic of the function plot.hclust (from the package cluster) in landscape orientation. Is it possible? Thanks, Juan
2002 Jun 19
2
problem with boot
Hello R-users, I'm using the boot's library. I have two questions: 1. I execute for example data<-rnorm(100) boot(data,mean,500) and I obtain 500 equal bootstrap samples of data. Why? 2. I need to calculate the bootstrap confidence intervals for a statistic, but when I use the function boot.ci it shows the error message: Error in if
2003 Jan 17
1
problems writing graphics
Hello R-listers, I am developing a function which needs to create jpeg files from some plots. To create the jpeg files I use the instruction dev.print(jpeg, file=c://graph.jpg",width=400,height=400). Until now everything has been fine, but now I have a special plot which is formed by 3 separate plots joined with the instruction "layout": nf <-
2002 Jan 21
1
.Fortran or .C???
Hello, I have made a dll with mingw32 fortran compiler. I load my dll with the dyn.load function, but when I call one of my Fortran procedures with the .Fortran instruction, an error message appears saying that my function is not in the load table. However, if I call my Fortran routines with ".C" it works fine. I would like to know what is happening here. Is it usual to call Fortran
2007 Feb 15
2
How to add obj to a list?
Hello everybody! I'm quite new using R and i'm trying to develope a function, but i have a problem. What i want to build is something like an objects vector. I have a list with two tables, and after or next to them, I want to add more tables or vectors to that list one by one. But i cannot find how to do it! Does someone can help me? I will be very grateful for any of your help!
2001 Sep 19
4
Building a dll for windows
This is a recurrent question but could not find the answer in the documentation. I want to build a dll for windows from a fortran program to be loaded with dyn.load. I can do it easily for linux with: g77 -shared -o foo.dll foo.f The g77 compiler (mingw-1.01) for windows does not recognise the -shared option. In windows the Writing extensions manual tells to use Rcmd SHLIB but I can't
2001 Dec 19
2
readline with R-1.4.0
Hi, I am not sure if this is a bug, so I am posting it here. I also searched the FAQ file for the readline string and did not find anything about the behavior below. I just successfully rsync'ed, compiled and tested R-1.4.0 on my RH 7.2 Linux machine. I encountered one problem though. When running ./configure I noticed that I was getting errors from the readline library. Although
2004 Feb 18
3
ANOVA procedure on the sufficient statistics
Hi, I have a two-way anova with unequal cell numbers that I want to analyze. The problem is I don't have individual observations of the data. I only have the sufficient statistics (mean, variance, # of observations) for each cell. Is there any existing function in S-plus that would allow me to do aov() with the sufficient statistics? The table is like G1 G2 G3 G5 G6 T1 T2 T3
2002 Dec 31
3
Probit Analysis
Hello all, I have a very simple set of data and I would like to analyze them with probit analysis. The data are: X Event Trial 100 8 8 75 8 8 50 6 8 25 4 8 10 2 8 0 0 8 I want to estimate the value of X that will give a 95% hit rate (Event/Trial) and the corresponding 95% CI. Anyone can offer some help? Thanks!! -
2000 Aug 25
3
unexpected R crash - again
Sorry, but I lost this thread, so I sending this as a new message. This is really a follow-up to a post from a couple days ago saying that fisher.test from the ctest library crashed on the following data set: > T [,1] [,2] [1,] 2 1 [2,] 2 1 [3,] 4 0 [4,] 8 0 [5,] 6 0 [6,] 0 0 [7,] 1 0 [8,] 1 1 [9,] 7 1 [10,] 8 2 [11,]
2023 Jun 11
1
Resumen de R-help-es, Vol 172, Envío 16
Javier, no s? si es esto lo que buscas. Te copio una l?nea de uno de mis scripts. En el eje X, van los a?os desde 1990 a 2022, pero solo salen los a?os 90, 95, ... y el resto solo la marca secundaria sin el a?o scale_x_continuous(breaks = seq(1990, 2022, by = 1), labels = c(1990, rep("", 4), 1995, rep("", 4), 2000, rep("", 4),
2001 Nov 28
2
PNG diver problem
Hi, I am having the following problem and I am not sure if this is bug or I am missing something obvious. I have a bunch of R functions that automatically process large data sets. The processing produces several numerical summaries and several graphs which are subsequently put in reports. I usually do my processing in R BATCH mode on a Win2000 machine. All the graphical functions in my package
2001 Jul 24
3
strange slowness of plot
I just ran into this strange behavior. y <- rnorm(1000) x <- seq(0, length=length(y)) plot(x, y, type='l', lty=1) - instantaneous plot(x, y, type='l', lty=2) - 18s plotting lines + 15s plotting axes = 33s plot(x, y, type='l', lty=3) - 76s ,, + 75s ,, = 151s plot(x, y, type='l', lty=4) -