search for: testr

Displaying 20 results from an estimated 36 matches for "testr".

Did you mean: test
2003 Aug 01
1
samba 3.0 beta3 ldapsam bug ?!?!
...3 and changing to the new Samba schema V3 ( sambaSAMAccout ). Since this point i am not able to add any machine account. Not with smbpasswd or pdbedit. Regardless which tool i use i get the following error : ------------------------------------------------------------ failed to add user dn= uid=testr$,ou=Computers,o=sctg,dc=schuler,dc=de with: Object class violation object class 'sambaSamAccount' requires attribute 'sambaSID' failed to modify/add user with uid = testr$ (dn = uid=testr$,ou=Computers,o=sctg,dc=schuler,dc=de) ------------------------------------------...
2012 Jun 24
2
Win 64 package build - ERROR: loading failed for 'x64'
...GS=-I/JohnsWork/test/src/ ------------- 00install.out ----------------------------------------- * installing *source* package 'test' ... ** libs *** arch - i386 gcc -I"C:/PROGRA~1/R/R-215~1.0/include" -DNDEBUG -I/JohnsWork/test/src -O3 -Wall -std=gnu99 -mtune=core2 -c testR.c -o testR.o gcc -shared -s -static-libgcc -o test.dll tmp.def testR.o ../../../win32/test_win32.lib -lgfortran -LC:/PROGRA~1/R/R-215~1.0/bin/i386 -lR installing to C:/JohnsWork/test/make/R/test.Rcheck/test/libs/i386 *** arch - x64 gcc -m64 -I"C:/PROGRA~1/R/R-215~1.0/include" -DNDEBUG -I...
2018 Mar 01
0
Small program embedding R crashes in 64 bits
...od at C++ or makefile/compiler stuff, but I can't get it to work. I'm guessing this as to do with some longjumps to return to the prompt when there is an error but I don't know how to fix it. Compiling in 32 bits: P:/Rtools/mingw_32/bin/g++ -O3 -Wall -pedantic -IP:/R/R-3.4.3/include -c testr.cpp -o testr.o P:/Rtools/mingw_32/bin/g++ -o ./32.exe ./testr.o -LP:/R/R-3.4.3/bin/i386 -lR -lRgraphapp Results in: C:\test> 32.exe > a Error: object 'a' not found > # it works! But compiling in 64 bits: P:/Rtools/mingw_64/bin/g++ -O3 -Wall -pedantic -IP:/R/R-3.4.3/include -c tes...
1997 Nov 06
1
R-alpha: "invisible" (yet again): a more problematic bug[let]
I think this is a more problematic buglet in (implicit/explicit) ``invisible behavior''). Try this (all versions of R from 0.49 to 0.60): test0 <- function() c(1,2) test <- function(two = FALSE) c(1, if(two) 2) testR <- function(two = FALSE) return(c(1, if(two) 2)) test0()# 1 2 as it should test() # <<<<<<<<<<<<<<<<<<<<<< INVISIBLE! @#$@! test(T)# 1 2 print(test()) print(test(T)) testR() # ok; NOT invisible... testR(T)# 1 2 ----------------...
2010 May 11
2
Can not restore domain from a shared state file
Hi, I have two KVM host: h1 and h2, both of them mount an NFS directory as a shared storage. I can save (virsh save <domain> <file>) a domain in h1 to a state file in the shared storage successfully, but failed to restore it from h2 with the following error message: # virsh restore testRes.dat error: Failed to restore domain from testRes.dat error: operation failed: failed to start VM I can always restore it from h1, but sometimes works for h2 (wait for a while, then "virsh restore" command may succeed in h2). I guess the state file generated by "virsh save" co...
1999 Sep 14
1
dyn.load
...nctions of "otherfct.so", and I want dyn.load() each of it, without generating a unique librarie. For exemple : myfct.c : void myfct(double *x, double *y) { otherfct(x); *y=(*x)+1.0; } myoth.c : void otherfct( double *x ) { *x=99.; } I create the two libraries as following : ~/R/testR$ R SHLIB myfct.c gcc -g -O2 -fpic -I/usr/local/lib/R/include -c myfct.c -o myfct.o ld -shared -o myfct.so myfct.o ~/R/testR$ R SHLIB myother.c gcc -g -O2 -fpic -I/usr/local/lib/R/include -c myother.c -o myother.o ld -shared -o myother.so myother.o Then, when I am running R : > dyn.load("m...
2008 Mar 27
1
Nothing happened when I using t.test throuth RSPerl
...use R; use RReferences; my @array1=1..10; my @array2=1..39; &R::initR("--silent"); &R::library("RSPerl"); my $tt=&R::call("t.test", (\@array1, \@array2)) print $tt; I got the messages: Can't locate package RFunctionReference for @RReferences::ISA at testR.pl line 4. Use of uninitialized value in print at testR.pl line 11. Thanks in advance Zhu Shanshan
2003 Sep 22
1
creates directory that can't be deleted (PR#4246)
Full_Name: Xiaobao Wang Version: R 1.7.1 OS: Windows XP Submission from: (NULL) (24.45.25.102) accidentally done the following: rpt.dir <- paste("c:/report/testR","bestsub",spe="/") dir.create(rpt.dir) (spe should be sep). Now the directory "c:/report/testR bestsub " cannot be removed. I tried to remove it from Windows Explorer and got the message box: ================================================================= Er...
2006 May 08
3
(g)lm ordinal or scaled values?
...rm,N2B937_def);> of a factor can have a different linear effect on the value of the dependent variable.(A variable with a discrete number of values; an ordinal or nominal variable. Categorical variables are often used as grouping variables or factors.) The data : http://biostatistic.de/temp/testr.csv lm.data<-lm( dependent ~ var2,family = gaussian) I don't know whether anybody could explain me the difference between SPSS and R results but if there are different results then one of them is wrong :-( And I do not know which of them. I hope I explained the problem understandable Re...
2005 Oct 11
2
echo cancellation test problem on Windows OS.
...tp://www.vdream.co.kr/temp/ec/echocancel.wmv ( testing screen capture file ) http://www.vdream.co.kr/temp/ec/echocancel.zip ( test files ) The reason why echo still remains is that speaking signal from sound device differs from speaking signal from file, I guess. It's my pleasure to see my testring files. Thanks in advanced.
2001 Jun 11
2
load C code into R
...ect in Visual C++ (ver. 6.0). It consists of one simple routine named test which accepts one *integer argument and one *double argument and performs a trivial computation. The dll is named test.dll. In R1022 for Windows, I run >dyn.load("d:/programs/library/test/test.dll") >testr_function(a,x) .C"d:/programs/library/test/test",as.integer(a),as.double(x)) These are both accepted, and I can use dyn.unload as well with test.dll. I notice that while loaded, Visual C++ cannot recompile test.dll. But when I try >testr(10,x) I get the message ?Error in .C(&quo...
2004 May 24
1
Cannot call R's ISNAN() from a C code in >1.7 versions.
...9;s ISNAN() from a C code? I have C codes including ISNAN() calls and they worked well until I upgraded my R from 1.7 to later versions. When I tried to compile the codes in the version 1.8 and 1.9, I got error messages like this: test.obj : error LNK2001: unresolved external symbol _isnan .\testR.dll : fatal error LNK1120: 1 unresolved externals NMAKE : fatal error U1077: 'link.exe' : return code '0x460' Stop. I checked "Writing R Extensions" and did not find any changes in the API entry point for ISNAN in the later versions. Could any one enlighten me on wh...
2013 Jan 04
1
Integrating Java, C++ and R
...use a jni call as my UI is through java it crashes at C++ side. My files are ------------------------------------------------ JNICallingClass.C: JNIEXPORT void JNICALL Java_CallR_run (JNIEnv* env, jobject callr){ std::cout << "Inside JNICALL" << std::endl; testR(); std::cout << "ENd of JNICALL" << std::endl; } ------------------------------------------------- CppCall2R.C void testR(){ Rcpp::NumericVector vec(1); cout << "RInside ready" << endl; } ----------------------------------...
2004 Jul 21
2
Testing autocorrelation & heteroskedasticity of residuals in ts
Hi, I'm dealing with time series. I usually use stl() to estimate trend, stagionality and residuals. I test for normality of residuals using shapiro.test(), but I can't test for autocorrelation and heteroskedasticity. Is there a way to perform Durbin-Watson test and Breusch-Pagan test (or other simalar tests) for time series? I find dwtest() and bptest() in the package lmtest, but it
2004 Nov 03
2
[LLVMdev] Problems with nighttest FeatureTests
...erer 35336 4.9 1.7 11740 8828 ?? R 2:56AM 36:21.37 > [python] > wanderer 35340 4.9 1.7 11740 8828 ?? R 2:56AM 36:22.03 > [python] > wanderer 10005 0.0 0.2 1792 1004 ?? Is 2:13AM 0:00.01 > /bin/sh -c cd /home/wanderer/pkg/build/llvm/night && ./testr > wanderer 10006 0.0 0.2 1800 1040 ?? I 2:13AM 0:00.01 > /bin/sh - ./testrun > wanderer 10011 0.0 0.4 3020 2332 ?? I 2:13AM 0:00.06 [perl] > wanderer 35234 0.0 0.2 1796 1032 ?? I 2:55AM 0:00.00 sh -c > (time -p gmake -j2 -l3.0 -C test Feature.t)...
2004 Nov 03
0
[LLVMdev] Problems with nighttest FeatureTests
...2:56AM 36:23.59 [python] wanderer 35336 4.9 1.7 11740 8828 ?? R 2:56AM 36:21.37 [python] wanderer 35340 4.9 1.7 11740 8828 ?? R 2:56AM 36:22.03 [python] wanderer 10005 0.0 0.2 1792 1004 ?? Is 2:13AM 0:00.01 /bin/sh -c cd /home/wanderer/pkg/build/llvm/night && ./testr wanderer 10006 0.0 0.2 1800 1040 ?? I 2:13AM 0:00.01 /bin/sh - ./testrun wanderer 10011 0.0 0.4 3020 2332 ?? I 2:13AM 0:00.06 [perl] wanderer 35234 0.0 0.2 1796 1032 ?? I 2:55AM 0:00.00 sh -c (time -p gmake -j2 -l3.0 -C test Feature.t) > /home/w wanderer 35235...
2004 Nov 02
2
[LLVMdev] Problems with nighttest FeatureTests
>> > I assume you're talking about the FreeBSD run. I'm not sure what is >> > going >> > on >> >> No. You can see problem with Feature tests at >> http://llvm.cs.uiuc.edu/testresults/X86/ also (see Feature Test Results >> section ) > > I'm not sure that I follow. The qmtest stuff isn't working on Zion > because (I believe) of an upgrade that happened on the machine (the qmtest > binary doesn't work anymore?). Are you seeing a problem on fre...
2011 Mar 13
4
readMat - how to retrieve the variables
Hello I have a matlab MAT file that contains one single variable: a. The structure of a is as follows: a.river1.flow (flow values) a.river1.date_flow (date) a.river1.precip (precipitation values) a.river1.date_precip a.river2.flow a.river2.date_flow a.river2.precip a.river2.date_precip I have used readMat to load the variable a in R, however I have no idea how readMat translates a. I managed
2010 Aug 05
2
working config for xen which would transfer a serial interface
...st fine in dom0) even after manually loading parport_serial in DomU /dev/ttyS{0..3} do get created by default, if that matters. Here is the content of the config file, after the last attempt (which uses gitco's xen, but we failed similarly with the stock packages): name = "testr" uuid = "57baf51a-e293-fa35-9f2e-056a1c0e322a" maxmem = 512 memory = 512 vcpus = 1 bootloader = "/usr/bin/pygrub" on_poweroff = "destroy" on_reboot = "restart" on_crash = "restart" vfb = [ "type=vnc,vncunused=1,keymap=en-us" ] disk =...
2004 Nov 03
0
[LLVMdev] Problems with nighttest FeatureTests
...11740 8828 ?? R 2:56AM 36:21.37 >> [python] >> wanderer 35340 4.9 1.7 11740 8828 ?? R 2:56AM 36:22.03 >> [python] >> wanderer 10005 0.0 0.2 1792 1004 ?? Is 2:13AM 0:00.01 >> /bin/sh -c cd /home/wanderer/pkg/build/llvm/night && ./testr >> wanderer 10006 0.0 0.2 1800 1040 ?? I 2:13AM 0:00.01 >> /bin/sh - ./testrun >> wanderer 10011 0.0 0.4 3020 2332 ?? I 2:13AM 0:00.06 [perl] >> wanderer 35234 0.0 0.2 1796 1032 ?? I 2:55AM 0:00.00 sh -c >> (time -p gmake -j2 -l3.0...