Displaying 20 results from an estimated 308 matches for "cyclical".
Did you mean:
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 variable Final$y is a
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))
{
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
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 a new generic function for "plot" in
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 <-
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/file.txt
mkdir ~/cycle/cycle
mount -o bind ~/cycle ~/cycle/cycle
rsync -avxx ~/cycle ~/cycle2
Pl...
2012 Aug 25
1
cyclic namespace dependency detected
I'm having trouble installing my quantreg package on
R version 2.15.1 (2012-06-22) -- "Roasted Marshmallows"
Copyright (C) 2012 The R Foundation for Statistical Computing
ISBN 3-900051-07-0
Platform: x86_64-apple-darwin9.8.0/x86_64 (64-bit)
Seems odd since the CRAN version seems to be fine, but I'm
seeing after compiling of the i386 and x86-64 versions and
installing the
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?
2012 Mar 21
3
how calculate seasonal component & cyclic component of time series?
i am new to time series,whatever i know up till now,from that
i have uploaded time series file & what to build arma model,but for that i
want p & q values(orders)
tell me how to calculate best p & q values to find best AIC values for model
i am doing but giving error
>bhavar<-read.table(file.choose()) #taking time series file
> decompose(bhavar$V1)
Error in
2007 Jul 02
1
error in make install "cp: cannot copy cyclic symbolic link"
Hi All,
I'm trying to build klibc against my own kernel source tree. The build
goes fine, the problem is to install it.
As usr/klibc/README asks, I've create a symlink called linux pointing 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#
2011 Mar 19
1
[LLVMdev] Cyclic dependencies while building llvm shared libraries using CMake
Hello, I'm facing some problems while building LLVM 2.8 shared libraries
from source using CMake:
cmake -DBUILD_SHARED_LIBS=true ..
This is the output error:
CMake Error: The inter-target dependency graph contains the following
strongly connected component (cycle):
"LLVMARMCodeGen" of type SHARED_LIBRARY
depends on "LLVMARMAsmPrinter"
2014 Jun 30
2
[LLVMdev] LLD dynamic compilation
Folks,
I'm having a look at LLD and I need some guidance...
I know it's not production ready for x86 and ARM (the idea is to make
it so). My steps:
I've added it to tools/lld and ran CMake again (on x86_64) on a
standard release build (static linking). It works, builds but I see
one unit test error:
Note: Google Test filter = InputGraphTest.Observer
[==========] Running 1 test from
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