similar to: help on autocorrealtion time

Displaying 20 results from an estimated 1100 matches similar to: "help on autocorrealtion time"

2010 Sep 07
2
R package to identify model
Dear all, I would like to know if there is a R package performing model identification? thank you! -- View this message in context: http://r.789695.n4.nabble.com/R-package-to-identify-model-tp2529525p2529525.html Sent from the R help mailing list archive at Nabble.com.
2010 Jan 15
5
panel.bpplot
Hi everybody, I am a newbie in R. I would like to use the panel.bpplot function on my data set but I have some problems. Can this function work on matrix? My data set have some NaN and when I run panel.bpplot function it returns error due to the presence of NaN. How Can I solve this? Thank you so much for your help netrunner -- View this message in context:
2013 Feb 02
2
create and save a simulated dataset
Hello, I am trying to learn how to create a simulated dataset of a forest stand: I must simulate 10 stands, for each of the stands I have been creating a random number of trees. For each tree I should create a random diameter. The problem I have is that I cannot use a matrix because the length of the three items is different. I was trying with list but I have no clue on how to make a dataset out
2007 Nov 15
5
IO causing major performance issues
Hello everyone. I'm wondering what other people's experiences are WRT systems becoming unresponsive (unable to ssh in, etc) for brief periods of time when a large amount of IO is being performed. It's really starting to cause a problem for us. We're on Dell PowerEdge 1955 blades - but this same issue has caused us problems on PE1950, PE1850, PE1750 servers. We're running
2001 Jan 23
5
iptables
Isn''t it possible with iptables to filter on DSCP field? Thanks, Tom Aernoudt
2013 Feb 15
1
FRONTIER
Hello everybody, Anyone familiar with the package frontier? I have some general questions on how to approach the model design. Thanks in advance Giovanna Giovanna Ottaviani Aalmo Stipendiat/Ph.D. Student ------------------------------------------- Norsk institutt for skog og landskap Pb 115, NO-1431 Ås T (+47) 64 94 9094 M(+47) 980 30 422 F(+47) 64 94 90 80
2004 Nov 22
1
RWinEdt, other text editors and R2.01 a problem in pasting commands
Dear All, In the last few days I started using the last version of R as I encountered a problem with R1.9 and the use of RWinEdt, however the problem shows with R2.01 as well. More precisely 1. I install R2.01 after removing old verions of R 2. I Install RWinEdt package versione RWinEdt_1.6-2 and SWinRegistry_0.3-2 and everything seems fine 3. I recall the RWinEdt library (library(RWinEdt)) and
2020 Apr 28
1
R-4.0.0 and Texlive 2020 installed on EmmabuntusDE4 (Debian Bullseye)
Dear all, I whish to relate my installation of R-4.0.0 on Debian. I am mainly a Windows user and occasionnaly verify the CRAN checks of my packages on a second laptop equipped with Linux Mint Debian Edition 3 (LMDE3) based on Debian Stretch. On Friday, April 24, it took me a few hours to have R-4.0.0 installed on Windows and the sources compiled, thanks to the instructions provided by
2005 Nov 30
1
Corrupted workspace(?)
Dear R helpers, I'm using R2.2 under windows XP professional on a Dell double processor workstation. I have a large (29Mb) workspace that I'm trying to load both, by double clicking and by direct load. The message I get is "Bad restore file magic number (file may be corrupted)...". I believe that this is a consequence of a huge spike in the electrical system that my voltage
2008 Mar 12
1
constrained optimisation
Hi, i have to optimise a function f(a,b), with a, b vectors in R^d such that a and b are orthogonal, that is a'b=0. Anybody has a suggestion? Thanks, in advance, for your help, Giovanna _________________________________________________________________ [[elided Hotmail spam]] [[alternative HTML version deleted]]
2003 Dec 20
1
sound library
I'm collaborating with and electronic musician to experiment on the production of music from number sequences. As I'm an R user I started playing around with the sound library and I found it very useful. However there are several things I do not understand (I'm not an expert in acustic nor audio signal treatment). The first thing I'd like to understand is: let s be a normalized
2011 Apr 13
2
Wilcoxon rank sum in unbalanced design
Hi everyone! I need to perform a Wilcoxon rank sum test, but I have some ties and the groups have different size also. When I deal with ties I use the wilcox.exact function, how can I solve the different size problem using this function? thanks net -- View this message in context: http://r.789695.n4.nabble.com/Wilcoxon-rank-sum-in-unbalanced-design-tp3447400p3447400.html Sent from the R help
2011 Apr 25
2
[LLVMdev] inserting a fucntion call at the end of basic bloc
hi all, i would like insert a fucntion call at the end of each basic bloc the fucntion i have defined and declared at the begining of the module ie i have written a pass derived from a module pass virtual bool runOnModule(Module & M){ // i declared the fucntion and defined it for (Module::iterator a = M.begin(), b = M.end(); a != b; for (Function::iterator i = a->begin(), e =
2011 Apr 26
2
[LLVMdev] inserting a fucntion call at the end of basic bloc
I have defined the fucntion in another object file and linked it to the in fact the fucntion is : void consume(int , int * ); std::vector<Value*> int32_16_params; int32_16_params.push_back(inValue);//inValue is ConstantInt* inValue int32_16_params.push_back(gvar_int32_y); CallInst* int32_16 = CallInst::Create(func_consume, int32_16_params.begin(), int32_16_params.end(), "",
2011 Apr 25
2
[LLVMdev] inserting a fucntion call at the end of basic bloc
2011/4/25 Duncan Sands <baldrick at free.fr> > Hi Nabila, > > > i would like insert a fucntion call at the end of each basic bloc > > you can't, because only terminators are allowed at the end of a basic > block. > However you can try to insert the call before the terminator. > Yes, i mean before the termininator, My problem is how to call a method suppose
2011 Apr 25
0
[LLVMdev] inserting a fucntion call at the end of basic bloc
Hi Nabila, > i would like insert a fucntion call at the end of each basic bloc you can't, because only terminators are allowed at the end of a basic block. However you can try to insert the call before the terminator. ... > i tried to see an example with the demo, i saw that it instead of calling the > function, it repeats all the instruction that are existing in the function >
2011 Apr 25
0
[LLVMdev] inserting a fucntion call at the end of basic bloc
Hi Nabila, > My problem is how to call a method > suppose this fucntion > void A(int x) > { > x=x+1; > > } > > should i define this function and declare it at the beginig of the module and > create for it a basic bloc? you can just declare the function (i.e. no need to give it a body), and call it. You can then link with an object file that defines it. This is
2011 Apr 26
0
[LLVMdev] inserting a fucntion call at the end of basic bloc
Hi Nabila, > Now when i tried this pass an error says: > Wrong type for attribute noalias > tail call void @consume(i32 noalias 3, i32* @y) nounwind > > > noalias is only for arguments of pointer type. You probably meant it to > be on the second argument rather than the first. I suggest you correct > your code that adds the attribute.
2011 Apr 26
2
[LLVMdev] inserting a fucntion call at the end of basic bloc
2011/4/26 Duncan Sands <baldrick at free.fr> > Hi Nabila, > > > Now when i tried this pass an error says: >> Wrong type for attribute noalias >> tail call void @consume(i32 noalias 3, i32* @y) nounwind >> > > noalias is only for arguments of pointer type. You probably meant it to > be on the second argument rather than the first. I suggest you
2009 Apr 20
2
Getting mad with group permissions
I have a file server with two shares accessible to 2 different groups. After the last update ( from debian 2:3.2.5-4 to 2:3.3.2-1 ) i cannot any more access ONLY ONE of the two shares and I can't understand the reason! Can anyone hel me? I'm getting mad! Thanks Giorgio from smb.conf: [documenti_movi] path = /home/documenti_movi valid users = @staffmovi read