Displaying 5 results from an estimated 5 matches for "moredata".
Did you mean:
coredata
2007 Jan 02
1
Double quotes in CDRUserField?
Question: I'm trying to put a double quote into the CDRUserField. What
I end up with is a pair of double quotes. Example:
exten => s,n,SetCDRUserField(data)
exten => s,n,AppendCDRUserField(")
exten => s,n,AppendCDRUserField(moredata)
My record will look like this:
data""moredata
What I want is:
data"moredata
The wiki mentions using a backslash in order to 'quote the character' as
it says. However, this example:
exten => s,n,SetCDRUserField(data)
exten => s,n,AppendCDRUserField(\")
exten...
2003 Dec 20
0
smbfs, strange sym link import, starting with kernel 2.6.0
...an-Woody). It exports one share to the network.
The directory structure below that share contains a few subdirectories
as well as a few sym links pointing to directories on other hard disks
in the server machine. Samba is instructed to follow sym links.
(for this example: symdir -> /mnt/drive4/moredata/)
The client:
Debian unstable using samba 3.0.0.
The share is imported using the following /etc/fstab entry:
//somename/stuff /mnt/server smbfs
defaults,auto,username=XXXXX,password=XXXXX 0 0
The problem on the client machine:
Under kernel 2.4.x all works as expected.
When I change into...
2013 Jul 16
3
exhaustive-model-search issue results in multi-gigabyte FLAC file
...t on the offending file belongs to the band that uploaded it
to our service, so I can't provide it as a public download, but I can
supply it to a developer privately.
Command lines and encoder output is as follows:
lsd at cletus:~/projects/flac-bug$ time ./flac/src/flac/flac -f -7 -o
/data/moredata/flac-bug/7.flac 2303997286.wav
flac 1.3.0, Copyright (C) 2000-2009, 2011-2013 Josh Coalson & Xiph.Org
Foundation
flac comes with ABSOLUTELY NO WARRANTY. This is free software, and you are
welcome to redistribute it under certain conditions. Type `flac' for
details.
2303997286.wav: WA...
2004 Aug 27
2
`its' questions
Problem 1: Often, when I'm dealing with its, str() breaks. Here's a
bug demo. The first statements work fine --
library(its)
# Make a series of all dates from 1/1/2000 to 10/1/2000; fill this up
# with integers from 1 to 30
x1 <- newIts(start="2000-01-01", end="2000-01-10", 1:30, ncol=3)
print(x1)
# Do the same, but restrict yourself to weekdays only
2009 Jul 09
2
How to Populate List
...time. Here is a workable code:
set.seed(1)
xx = data.frame(x1=runif(10000,0,10), x2=runif(10000,0,10), x3=runif(10000,0,10))
xx$y = 3 + xx$x1 + 2*xx$x2 + 3*xx$x3 + rnorm(10000)
chunksize = 500
fit = biglm(y~x1+x2+x3, data=xx[1:chunksize,])
for(i in seq(chunksize,10000,chunksize)) fit=update(fit, moredata=xx[(i+1):(i+chunksize),])
AIC(fit)
[1] 28956.91
And the AIC for other chunksizes:
chunksize AIC
500 28956.91
1000 27956.91
2000 25956.91
2500 24956.91
5000 19956.91
10000 9956.91
Also I noted that the estimated coefficients are not dependent on chunk...