search for: gcount

Displaying 10 results from an estimated 10 matches for "gcount".

Did you mean: count
2005 Apr 18
4
longer object length, is not a multiple of shorter object length in: kappa * gcounts
Hi, I was using a density estimation function as follows: > est <- KernSmooth::bkde(x3, bandwidth=10) When setting bandwidth less than 5, I got the error "longer object length, is not a multiple of shorter object length in: kappa * gcounts ". I wonder if there is anybody who can explain the error for me? Thanks! Hui
2012 Jul 16
2
about dpik
Thank you for your reply. I know the x in dpik() means the vector. But I don't know how to import into c() with a huge metadata (>1000). Following is my some try, and the h is: [1] 0.001180569, which seems to be feasible.
2003 May 28
1
Kernel density
...(0,0)) Error in 0:L : NA/NaN argument > bkq <- bkde(q, bandwidth=0.11, gridsize=1, range.x=c(-1,1)) > bkq $x [1] -1 $y [1] NA > bkq <- bkde(q, bandwidth=0.11, gridsize=3, range.x=c(-1,1)) Warning message: longer object length is not a multiple of shorter object length in: kappa * gcounts > bkq $x [1] -1 0 1 $y [1] NA NA NA > bkq <- bkde(q, bandwidth=0.11, range.x=c(-1,1)) (works, I get 401 proper y-values) Adding truncate=FALSE does not change anything. Do I really need to generate 401 (default gridsize) y-fits to extract the one value I am interested in? What's...
2006 Jun 18
1
bug with boot.sw98 function (PR#8999)
...o use the boot.sw98 to come up with some sensitivity analysis I get the following error: boot.sw98(XOBS=x,YOBS=y,NREP=100,DHAT=dhat,RTS=3,ORIENTATION=2) Error in 0:L : NA/NaN argument In addition: Warning message: longer object length is not a multiple of shorter object length in: kappam * Gcounts What does this mean? Is this because I have too many observations? What can I do to fix it? Please let me know if you need further information. Thank you in advance for your cooperation. Regards, Nuno PS here is a transcript of the script I'm using library(FEAR) abc <- read.csv("...
2008 Jan 03
1
KernSmooth: bkde and dpik bandwidth questions
Hi, I have two separate questions relating to the KernSmooth package. I am using the dpik function from the KernSmooth package and receive the error Warning message: In kappam * Gcounts : longer object length is not a multiple of shorter object length I saw an earlier post , but the issue was using the bkde fxn and the person appeared to be using too small of a bandwidth. However, dpik returns a bandwidth and therefore I am not sure why I am getting this error. If I us...
2006 May 09
1
xapian-compact fails to rename iamflint.tmp for win32/cygwin builds
...hen it tries to rename/replace iamflint.tmp with the final version. The reason is you cannot rename an opened file with Win32/Cygwin libc. To correct this, just close the output ofstream (xapian-compact.cc(534)) like: """ ofstream output(dest.c_str()); if (!output.write(buf, input.gcount())) { cerr << argv[0] << ": error writing '" << dest << "': " << strerror(errno) << endl; exit(1); } output.close(); //Added """ Regards, -- Patrick M?zard
2014 Jun 13
0
Wine release 1.7.20
...alog 32849 Path Of Exile sound glitch 33882 gtags (GNU GLOBAL) 6.2.x crashes on indexing of large projects 34646 Virtual DJ v7.4 crashes on startup 35426 RPG Maker VX Runtime: games crash on startup 36002 ImpotRapide 2013 (.NET 4.0 app) crashes on unimplemented function msvcp110.dll.?gcount@?$basic_istream at DU?$char_traits at D@std@@@std@@QBE_JXZ 36065 PunkBuster service tests fail (DeleteService should mark active services in SCM database as pending for deletion) 36139 msi/db test crash on wine compiled with gcc-4.9.0 36153 Borderlands 2 mouse focus no longer works properl...
2016 Jul 22
0
Wine release 1.9.15
...that takes a DC * where possible. Iván Matellanes (21): msvcirt: Reset the pointers on file sync in most cases. msvcirt: Add stub for class istream. msvcirt: Implement istream constructors/destructors. msvcirt: Implement istream::eatwhite. msvcirt: Implement istream::gcount. msvcirt: Implement istream::ipfx. msvcirt: Implement istream::isfx. msvcirt: Implement istream::get for strings. msvcirt: Implement istream::get for single characters. msvcirt: Implement istream::get for streambufs. msvcirt: Implement istream::getline. msv...
2012 Nov 29
2
[LLVMdev] problem trying to write an LLVM register-allocation pass
I have a new problem: Register RBP is used in a function foo. (I am not allocating RBP to any virtual register, the instances of RBP in function foo are in the machine code when my register allocator starts.) Function foo calls function bar. Register RBP is not saved across the call, though it is live after the call. Function bar includes a virtual register. The code that I'm using to
2012 Dec 01
0
[LLVMdev] problem trying to write an LLVM register-allocation pass
...)", " return -1;", "", " return 1;", "", "#else", " (void) yyin->read( buf, max_size );", "", " if ( yyin->bad() )", " return -1;", " else", " return yyin->gcount();", "#endif", " }", "", "void yyFlexLexer::LexerOutput( const char* buf, int size )", " {", " (void) yyout->write( buf, size );", " }", "%*", "", "/* yy_get_next_buffer - try...