search for: recalls

Displaying 20 results from an estimated 6658 matches for "recalls".

Did you mean: recall
2005 Mar 30
3
Recall() and sapply()
Hi. I'm having difficulty following the advice given in help(Recall). Consider the two following toy functions: f1 <- function(n){ if(length(n)>1){return(sapply(n,f1))} matrix(n,n,n) } f2 <- function(n){ if(length(n)>1){return(sapply(n,Recall))} matrix(n,n,n) } f1() works as desired (that is, f(1:3), say, gives me a three element list whose i-th element is an
2009 Jun 01
3
Within Subject ANOVA question
Dear R users, I have copied for following table from an article on "Using confidence intervals in within-subject designs": Subject 1sec 2sec 5sec 1 10 13 13 12.00 2 6 8 8 7.33 3 11 14 14 13.00 4 22 23 25 23.33 5 16 18 20 18.00 6 15 17 17 16.33 7 1 1 4 2.00 8 12 15 17 14.67 9 9 12 12 11.00 10 8 9 12 9.67 I rearranged the data this way:
2006 Apr 05
1
predict.smooth.spline.fit and Recall() (Was: Re: Return function from function and Recall())
Hi, forget about the below details. It is not related to the fact that the function is returned from a function. Sorry about that. I've been troubleshooting soo much I've been shoting over the target. Here is a much smaller reproducible example: x <- 1:10 y <- 1:10 + rnorm(length(x)) sp <- smooth.spline(x=x, y=y) ypred <- predict(sp$fit, x) # [1] 2.325181 2.756166 ...
2008 Jun 05
0
RECALL: Lithium batteries for Polycom Soundstation 2W
Just released by the CPSC on their recalls mailing list; please forward to any venues where you feel operators or resellers of the SoundStation might be, with this preface included. My 2W had a battery with the part code 1520-07804-002; its date code was GP0806, and therefore predates the recall period. Cheers, -- jra ----- Begin forwar...
2003 Sep 19
2
Recall doesn't seem to work
Hi I'm having a problem where the recall button doesn't work If i press recall before I dial numbers it disconnects me which is what I would expect, but during a conversation if I want to transfer the TDM 400 just ignores the recall Any advice would be gratefully received Thanks Robb
2006 Mar 29
2
Recall for parent
What's the best way to simulate Recall for parent function? Consider this one-time recursive code: alwaysEven <- function(x) { handleOdd <- function(x) { alwaysEven(x-1) # use Recall-like here } return(if (x %% 2) handleOdd(x) else x) } any2even <- alwaysEven rm(alwaysEven) any2even(3) ---------------------------------------------------------- SIGSIG --
2010 Jul 06
1
with(x, Recall()) Crash
R-devel, I discovered a segfault in my R code that boiled down to my incorrect use of the Recall() function embedded within a with() function. Since segfaults are generally bad things, even when it's the user's fault for writing nonsense code, I thought I'd pass along the offending code. I've tested the crash on R 2.11.1 (on Linux and Mac), but not in devel versions of R. HTH,
2000 Dec 18
2
R-1.2.0 and command recall/edit
For R-1.1.1 on Solaris 7, I can use command line recall/edit by using "Control-P", etc. But R-1.2.0 on Solaris 8, I can not. Is this because the R version or Solaris version? Is there a vi mode for command recall/edit, i.e. Esc-P, etc. PS: I hate to ask questions that has been asked before, but mailing list archive is until 08/28/2000. Thanks.
2007 Jan 24
2
Logistic regression model + precision/recall
Hi, I am using logistic regression model named lrm(Design) Rite now I was using Area Under Curve (AUC) for testing my model. But, now I have to calculate precision/recall of the model on test cases. For lrm, precision and recal would be simply defined with the help of 2 terms below: True Positive (TP) - Number of test cases where class 1 is given probability >= 0.5. False Negative (FP) -
2010 Mar 16
1
aplicar función de cuantilas a un dataframe
Hola R-adictos, me gustaría que alguien me ayudara a aplicar la función "quantile" (varios percentiles) a un marco de datos estratificado por algunas variables categóricas (ver fichero adjunto como ejemplo). La idea es obtener varios percentiles de varias variables (primeras columnas del fichero de datos), pero dividiendo el marco de datos en función de los valores de las variables
2004 Sep 16
1
ZAP Hook flash / recall on active zap interface
Hi there, I have a x100p card in an asterisk box. Does anyone know if it's possible to do a hook flash / recall on an active zap channel? On what I'm trying to do... >From an ordinary analogue pstn telephone I can call someone, press recall, call someone else, press recall 3 & presto we're on a three way chat, with me only using one line - using the telephone company's
2012 Feb 09
2
ROCR crashes for simple recall plot
I'm trying to use ROCR to create a simple cutoff vs recall plot (recall at p) on the example ROCR.simple dataset: library(ROCR) data(ROCR.simple) pred <- prediction(ROCR.simple$predictions, ROCR.simple$labels) perf <- performance(pred, "rec") plot(perf) But R crashes on me on the last line. I'm using R 2.14.1, ROCR 1.0-4. ?Any ideas? Thanks in advance. -- Yang Zhang
2006 Mar 24
1
R for MacOSX - History and command line problems
Hi! I have the following issues using "R for Mac OS X 2.2.1" (from the ppc-.dmg) on a Mac OS X 10.4.5: 1) The command history is never saved (automatically) to .Rhistory. (The file stays empty.) 2) If I save a history to some file via the "Save History" button, and I load it afterwards via "Load History", only the first entry of the saved History appears in
2018 Sep 23
1
Recall
This works: my.compose <- function(f, ...) { if (missing(f)) identity else function(x) f(my.compose(...)(x)) } my.compose(sin, cos, tan)(pi/4) ## [1] 0.5143953 sin(cos(tan(pi/4))) ## [1] 0.5143953 But replacing my.compose with Recall in the else causes it to fail: my.compose2 <- function(f, ...) { if (missing(f)) identity else function(x) f(Recall(...)(x))
2011 Jun 13
2
Recall: EXTERNAL: A bridge problem
Massey, Ricky would like to recall the message, "EXTERNAL: [CentOS] A bridge problem".
2006 Apr 05
0
Return function from function and Recall()
Hi, yesterday I got very useful feedback on what is the best way to return a function from a function. Now, I run into a problem calling a returned function that down the stream uses Recall(). Below is a self-contained example. I took away yesterday's code for returning a minimal environment for the function, because that is not related to this problem. getPredictor <- function(x, y) {
2009 Aug 24
3
help with recalling data points in a specific region of the plot
Hi all, Is there a quick way to display or recall data points from a specific region on the plot? For example I want the points from x>5 and y>5? Thank you very much! -- Edward Chen [[alternative HTML version deleted]]
2010 Sep 05
1
Warning messages: not meaningful for factors
Dear Experts, I need to include the repeated structure in our data set object, recall.sums.df, before using gls function. Thus I used groupedData. But I encountered error messages which may mean '*' is not not meaningful factor. Please let me know what I have to do. Thanks, Jeong > recall.sums.df[0:10, ] recall.values recall.ind subj replication hemi region group 1 17.515
2012 Feb 10
0
Recall@p plot using ROCR?
Is it possible to use ROCR to plot a simple recall at p plot? I.e., a plot where the x-axis is the position into the ranked test set, and the y-axis is the recall, so you can see what's the recall in the top 10% of the ranked results. I searched through the performance() manual but found nothing. (Not a cutoff-vs-recall graph, since the cutoff is the probability estimate returned by the
2006 Nov 07
0
Generating Recall/Flash using Zaptel
Hi I'm trying to generate a Recall/Flash on an FXO (TDM400) connected to a PABX and failing at the moment. I was using the Flash application, which seems to generate a hook flash as opposed to a Recall. Debugging the Zap channel output using a second FXS channel gives me the following << [ TYPE: Null Frame (5) SUBCLASS: N/A (0) ] [Zap/1-1] << [ TYPE: DTMF (1) SUBCLASS: 1 (49) ]