search for: cyclic

Displaying 20 results from an estimated 308 matches for "cyclic".

2010 Jun 04
1
package mgcv inconsistency in help files? cyclic P-spline "cs" not cyclic?
Dear all, I'm a bit stunned by the behaviour of a gam model using cyclic P-spline smoothers. I cannot provide the data, as I have about 61.000 observations from a time series. I use the following model : testgam <- gam(NO~s(x)+s(y,bs="cs")+s(DD,bs="cs")+s(TT),data=Final) The problem lies with the cyclic smoother I use for seasonal trends. The v...
2008 Aug 27
4
[releng_7 tinderbox] failure on amd64/amd64
TB --- 2008-08-27 11:26:00 - tinderbox 2.3 running on freebsd-stable.sentex.ca TB --- 2008-08-27 11:26:00 - starting RELENG_7 tinderbox run for amd64/amd64 TB --- 2008-08-27 11:26:00 - cleaning the object tree TB --- 2008-08-27 11:26:30 - cvsupping the source tree TB --- 2008-08-27 11:26:30 - /usr/bin/csup -r 3 -g -L 1 -h localhost -s /tinderbox/RELENG_7/amd64/amd64/supfile TB --- 2008-08-27
2006 Aug 21
1
Escaping " ' " character
Dear all: I have a character object x with ' (single-quote) character. x <- c('"hydrolase activity","actin binding","3',5'-cyclic-nucleotide phosphodiesterase activity") I want to write a function that will identify ' and replaces with \' myf <- function(term){ if (grep("'",term)) { sub("'","\'",term)} } > myf(x) [1] "hydrolase activity" [2] "acti...
2011 Apr 14
2
Identify period length of time series automatically?
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi I have 10.000 simulations for a sensitivity analysis. I have done a few sensitivity analysis for different response variables already, but now, as most of the simulations (if not all) show some cyclic behaviour, see how the independent input parameter influence the frequency of the cyclic changes and "how cyclic" they actually are. So effectively, I have 39 values, and I want to identify automatically the frequency / period length of the series and a kind of a measure on "how cyc...
2007 Dec 10
1
cyclic dependency error
Dear all, I am encountering a cyclic dependency error when running R CMD check on an R package I wrote (R version 2.6.1, Mac OS X 10.4), see the error message below. Creating a new generic function for "print" in "clValid" Creating a new generic function for "summary" in "clValid" Creating...
2009 May 05
1
Find cyclically identical binary sequences
Dear R-helpers, I need to generate all the binary sequences of length n (here n = 8) that start with 1 and have no fewer than two of each digit, and are not cyclic permutations of each other. Here is what I have done: len <- 8 df <- as.data.frame(numeric(2^(len - 1)) %o% numeric(len)) require(partitions) for (i in 1:2^(len - 1)) df[i, ] <- binary(i, dim = len)[[1]] df <- df[which(df[, 1] == 1), ] df <- df[which(rowSums(df) > 1), ] df <-...
2011 Jan 13
2
[PATCH] One more -x to not traverse cyclic bind-mounts
This patch allows one to repeat the '-x' option a third time to stop rsync from traversing potentially cyclic bind mounts that are on the same filesystem. For example, the following scenario would cyclically traverse the bind mounts until the OS (Linux in this case) hits a maximum traversal count, thank goodness. Other OSes may traverse the bind mount indefinitely... su cd mkdir ~/cycle touch ~/cycle...
2012 Aug 25
1
cyclic namespace dependency detected
...ng of the i386 and x86-64 versions and installing the .so files: ?. installing to /Library/Frameworks/R.framework/Versions/2.15/Resources/library/quantreg/libs/x86_64 ** R ** data ** demo ** inst ** preparing package for lazy loading Error in loadNamespace(package, c(which.lib.loc, lib.loc)) : cyclic namespace dependency detected when loading 'quantreg', already loading 'quantreg' Error in .Fortran("srqfn", n = as.integer(n), m = as.integer(m), nnza = as.integer(nnza), : Fortran symbol name "srqfn" not in DLL for package "quantreg" Error : unabl...
2013 Aug 21
1
cyclic namespace dependency detected when loading ...
Hi R users, I am developing two packages. Each package uses some functions from the other package. Now when I define these dependencies in the NAMESPACE file (via importFrom(XXXX,function1,....)), i get this error (when building one package): cyclic namespace dependency detected when loading 'XXXXXX', already loading ?YYYYYYY?, ?XXXXXXXXX? Is there any way to prevent this error? Shouldn't this case be allowed in some way? Or can package dependencies only be in one direction? Thanks Jannis
2012 Mar 21
3
how calculate seasonal component & cyclic component of time series?
...s file > decompose(bhavar$V1) Error in decompose(bhavar$V1) : time series has no or less than 2 periods what this error is telling ? http://r.789695.n4.nabble.com/file/n4491470/tinku.txt tinku.txt -- View this message in context: http://r.789695.n4.nabble.com/how-calculate-seasonal-component-cyclic-component-of-time-series-tp4491470p4491470.html Sent from the R help mailing list archive at Nabble.com.
2007 Jul 02
1
error in make install "cp: cannot copy cyclic symbolic link"
...to my kernel tree: lrwxrwxrwx 1 root root 25 Jul 2 16:18 linux -> /usr/src/linux-2.6.22-rc6 anderson-herzer:/usr/local/src/klibc-1.5# export LANG=C anderson-herzer:/usr/local/src/klibc-1.5# make prefix=/usr/local/install INSTALL headers + man pages to /usr/local//lib/klibc cp: cannot copy cyclic symbolic link `linux//include/asm-x86_64/./asm-x86_64' make[1]: *** [header] Error 1 make: *** [install] Error 2 anderson-herzer:/usr/local/src/klibc-1.5# uname -a Linux anderson-herzer 2.6.22-rc6 #4 Mon Jul 2 14:30:42 BRT 2007 x86_64 GNU/Linux My distro is Debian unstable amd64. My proces...
2011 Mar 19
1
[LLVMdev] Cyclic dependencies while building llvm shared libraries using CMake
...e following strongly connected component (cycle): "LLVMARMCodeGen" of type SHARED_LIBRARY depends on "LLVMARMAsmPrinter" "LLVMARMAsmPrinter" of type SHARED_LIBRARY depends on "LLVMARMCodeGen" At least one of these targets is not a STATIC_LIBRARY. Cyclic dependencies are allowed only among static libraries. Does anyone else had the same problem ? Thank you ! -- "Forgive, O Lord, my little jokes on Thee, and I'll forgive Thy great big joke on me." http://pyevolve.sourceforge.net/wordpress/ -------------- next part -------------- An...
2014 Jun 30
2
[LLVMdev] LLD dynamic compilation
...; of type SHARED_LIBRARY depends on "lldYAML" (weak) depends on "lldPasses" (weak) "lldYAML" of type SHARED_LIBRARY depends on "lldNative" (weak) depends on "lldPasses" (weak) At least one of these targets is not a STATIC_LIBRARY. Cyclic dependencies are allowed only among static libraries. The error is clear, and the only way (I know) to make it compile dynamically is to remove the cyclic dependency. Question is: Why the cyclic dependency? Is that really necessary, or is that no one ever bothered? cheers, --renato
2013 Mar 27
0
[LLVMdev] Fwd: cyclical use between caller and callee
2013/3/27 Nick Lewycky <nicholas at mxc.ca>: > charles quarra wrote: >> >> Hi, >> >> I have two functions in a module, X.foo, which is the callee, and >> Y.foo2, which calls X.foo. >> >> If i either try to run llvm::Function::eraseFromParent() on any one of >> the functions, i'll >> get this assertion error: >> >> F is
2013 Mar 28
0
[LLVMdev] cyclical use between caller and callee
2013/3/27 Nick Lewycky <nicholas at mxc.ca>: > charles quarra wrote: >> >> Hi, >> >> I have two functions in a module, X.foo, which is the callee, and >> Y.foo2, which calls X.foo. >> >> If i either try to run llvm::Function::eraseFromParent() on any one of >> the functions, i'll >> get this assertion error: >> >> F is
2010 Jun 15
1
"cyclic" dependencies
Hi all, I would like to reference a resource twice, with different configurations. At the moment I do this: service { "service1": ensure => running, enable => true, require => Exec["some stuff"] } exec { "some stuff": command => "/etc/init.d/service1 stop; do some stuff required for service1", unless => "find out if already
2002 May 31
0
[Bug 744] Changed - Cyclic "unhandled exception" error
--- Pavel Øezníèek <pavel.reznicek@wo.cz> wrote: > I have made some steps and it helped me a bit: Wine > already does run! I'm glad for you! Closing the bug. > The most important thing is that I have configured > Wine to run with a fake > partition. > > But there are a few more problems left. > > 1) What's the reason that under KDE 2.0.0 & 2.0.1
2013 Apr 02
1
[LLVMdev] cyclical dependence between caller and callee in JIT
2013/3/27 Nick Lewycky <nicholas at mxc.ca>: >The common idiom to delete any Value* is: > > V->replaceAllUsesWith(UndefValue::get(V->getType()); > V->eraseFromParent(); > > Does that work for functions? You may need to make sure the 'undef' has a > pointer to function type instead of the function type. > I tried this code sample, passing the type
2008 Jan 14
3
Spot the cyclical relationship
I got the following error, but there''s no "cycle" I commented out File["/dev/sdb3"] and it works, but of course would choke if I ran it and the requirement were not met err: Could not apply complete catalog: Found cycles in the following relationships: File[/dev/sdb1] => Exec[echo -e "0,290\n,290\n," | sfdisk /dev/sdb] Here''s the node: node
2011 Nov 18
1
cca with repeated measures
Dear all, How can I run a constrained correspondence analysis with the following data: 15 animals were measured repeatedly month-wise (over to 2 years) according to ther diet composition (8 food categories). our data.frame looks like this: food 1 2 ... 8 sex season year animal freq 12 8 ... 1 0 summer 2011 1 freq 0 7 ... 0 1 winter 2011 1 ... freq 0 7 ... 0 1 spring 2011 15 We