similar to: predict incosistency ?

Displaying 20 results from an estimated 1000 matches similar to: "predict incosistency ?"

2001 Sep 25
0
Bug in model.matrix.default (was: [R] predict incosistency ?) (PR#1100)
On Tue, 25 Sep 2001 12:27:27 GMT, Jorge Luis Ojeda Cabrera <jojeda@posta.unizar.es> wrote in message <20010925.12272700@macdesp8.unizar.es>: >When fitting model 'y~1', the 'lm' response is ok, but it is not possible >to get predictions using 'predict'. May be this is a bug, at least i >think it is somehow >inconsistent. It still appears in 1.3.1,
2000 Mar 24
1
body bug?
I am not sure if this is a bug or not but it seemed estrange to me. Following code works ok. > cat("Hello my body is: ");body(cat) Hello my body is: .Internal(cat(list(...), file, sep, fill, labels, append)) > cat("Hello my body is: ");body(cat);cat("\n") Hello my body is: .Internal(cat(list(...), file, sep, fill, labels, append)) > But when I
2001 Sep 25
0
Bug in model.matrix.default (PR#1100)
There's more to it than that (which was already fixed in R-devel). The internal code expects there to be columns in the model frame. I have already fixed this in R-devel (by faking an unused column). On Tue, 25 Sep 2001 murdoch@stats.uwo.ca wrote: > On Tue, 25 Sep 2001 12:27:27 GMT, Jorge Luis Ojeda Cabrera > <jojeda@posta.unizar.es> wrote in message >
2000 Oct 20
1
Local Scopes in S
I 've been working with R since last year and I am quite "happy" with R capabilities. Nevertheless, I need to present my job to other people (S-users) and I am facing a problem with R & S compatibility: my R-scripts make intensive use of functions local scope, and as far as I know(I am a new to S) S does not have this capability. I use to do things like: create.f <-
2008 Jan 11
1
Adding weights to ecdf
I would like you consider that the function ecdf could be extended in the following way to handle weights when computing Empirical distribution Functions. There exist particular cases that supports this kind of extension, see for example: Rao, C. R., 1997. Statistic and True. Putting chance to work. World Scientific Publishing. Cox, D. R., 1969. Some Sampling Problems in Technology. New
2011 Mar 18
2
[LLVMdev] LLVM ERROR: No such instruction: `vmovsd ...' ?
Hello, I am running a i7 MacBook Pro 2011. If I write: @g = global double 0.000000e+00 define i32 @main() { entry: %0 = load double* @g %1 = fmul double 1.000000e+06, %0 store double %1, double* @g ret i32 0 } in test.ll and I run > llc test.ll > gcc test.s I get: test.s:12:no such instruction: `vmovsd _g(%rip), %xmm0' test.s:13:no such instruction: `vmulsd LCPI0_0(%rip),
2014 Oct 14
2
OFF-TOPIC
Hola, Dado que hay varios matemáticos en el foro, ?alguien puede recomendar algún buen libro en español o ingles que ayude a entender el álgebra lineal de primero de matemáticas ?. Gracias y un saludo JM Arbones
2010 Jun 25
3
[LLVMdev] recursive nested functions
Hello, This is a little off-topic. But I am writing a compiler to llvm ir for a language that admits recursive nested functions and am stuck as to how to translate them. Concretely, I'm trying to lift them all to the topmost level and pass all their free variables explicitly as arguments. To do this, I have to determine all their free variables in their bodies. In particular when I come
2018 Jan 19
5
API de AEMET con R?
Desde el terminal de Ubuntu, he conseguido descargar los datos usando esto: DESCARGAR LISTA DE ESTACIONES wget --method GET --header 'cache-control: no-cache' --no-check-certificate --output-document - https://opendata.aemet.es/opendata/api/valores/climatologicos/inventarioestaciones/todasestaciones/?api_key=*vuestra api key* DESCARGAR DATOS HISTÓRICOS Diciembre 2017, ALICANTE wget
2011 Aug 01
2
[LLVMdev] llvm 3.0 svn and cfi_* directives
Hi, Compiling a simple function with the 3.0 SVN branch llc produces .s output containing cfi_startproc, cfi_endproc, cfi_def_cfa_offset that gcc refuses to compile (OS X 10.7 on X86-64) with the following error: test.s:6:Unknown pseudo-op: .cfi_startproc test.s:10:Unknown pseudo-op: .cfi_def_cfa_offset test.s:10:Rest of line ignored. 1st junk character valued 51 (3). test.s:38:Unknown
2013 Jul 12
2
[LLVMdev] setjmp/longjmp exception handling: how?
Dear list, I want to add SJLJ exception handling to my frontend. Unfortunately, there doesn't seem to be any examples in the documentation as to how to use the intrinsics @llvm.eh.sjlj.setjmp @llvm.eh.sjlj.longjmp @llvm.eh.sjlj.lsda @llvm.eh.sjlj.callsite Is there a way to force Clang to use SJLJ exception handling for C++? That way I would be able to look at its output to learn how to use
2011 Aug 15
3
[LLVMdev] structured types as function arguments
Hi, When calling a function, does the llvm code generator support passing structured types (arrays, structs, etc.) by _value_? I wrote some small examples, and it seemed to work, but I was wondering if anything can go wrong if the structured types are very large... Thanks, N
2011 Apr 07
2
[LLVMdev] opt + fastcc bug?
Hi, Is this correct behaviour? test.ll: declare {} @__ex__print_int(i64) define i32 @main() { entry: %0 = call i64 @f.1() %1 = call {} @__ex__print_int(i64 %0) ret i32 0 } define internal fastcc i64 @f.1() { entry: ret i64 7 } > opt -std-compile-opts test.ll -S ; ModuleID = 'test.ll' define i32 @main() noreturn nounwind { entry: tail call void @llvm.trap()
2012 Feb 06
2
Custom extension: dial a queue
Dear, I need to create a custom device extension in order to dial a local queue. Suppose my queue number is 8888, how can fill the Dial field from the custom extension ??? Because if I put just 8888 or Local/8888, I don't succeed. Thanks a lot
2002 Apr 09
3
getaddrinfo.c error compiling rsync on tru64 5.1A
i've applied albert chin's patch on configure.in file: http://lists.samba.org/pipermail/rsync/2002-January/005726.html, but i still getting the error: cc: Error: lib/getaddrinfo.c, line 180: In this statement, "EAI_MAX" is not declared. (undeclared) thanks for any advice Martin Sigilfredo _________________________________________________________________ Join the world’s
2023 Jun 23
15
[Bug 3584] New: Segfault when built with optimisations on macOS 13 (x86_64) with Xcode 14.3
https://bugzilla.mindrot.org/show_bug.cgi?id=3584 Bug ID: 3584 Summary: Segfault when built with optimisations on macOS 13 (x86_64) with Xcode 14.3 Product: Portable OpenSSH Version: 9.3p1 Hardware: amd64 OS: Mac OS X Status: NEW Severity: major Priority: P5
2011 Jul 18
4
[LLVMdev] questions about the type system rewrite
Hi, Question 1: Will the new type system allow to incrementally build structs (instead of filling all the fields in one go, as in the example given in <http://nondot.org/sabre/LLVMNotes/TypeSystemRewrite.txt>? Question 2: Will the ocaml bindings to be updated to work with the new type system once the merging of the rewrite to the main branch is done? Thanks very much, N
2010 Jun 16
4
Asterisk + E1 card
Dear all, I have to install an E1 card in my Asterisk 1.4.23 server and here is my short question: Is it necessary to install or update any Asterisk/Zaptel/Any extra module or the default installation is good enough to just plug and run the E1 card ???? Thanks a lot Alejandro
2008 Jul 14
2
Insurance review statistical methods
Hi R users: I will like to know if somebody works on insurance statistics (actuarial problems) and had use TRICAST, and can tell me if with all the R tools it can be build a solution like TRICAST or similar. In a word: Do you think that R has all the statistical tools (I mean modeling tools) to make a job similar to TRICAST? Does TRICAST has modeling tools that are not implemented on R yet?
2011 Aug 05
1
Ring delay problem
Dear, I have asterisk 1.6.2.13 in a small hardware PBX (512 GB RAM and Celeron), and last days when I call from one extension to another of the same PBX after I dial the number the rings sound after 20 seconds. In the CLI log, when I debug the AGI, I see always goes good until dialparties.agi, and after that there are 20 seconds without any log, and so the ring sound. I've read