Displaying 20 results from an estimated 2126 matches for "100000".
Did you mean:
1000000
2012 Mar 04
1
Unable to start nfs server
An HTML attachment was scrubbed...
URL: <http://supercolony.gluster.org/pipermail/gluster-users/attachments/20120304/04099724/attachment.html>
2007 Mar 12
0
11 commits - libswfdec/js libswfdec/swfdec_loader.c libswfdec/swfdec_root_sprite.c libswfdec/swfdec_script.c player/swfdebug.c player/swfdec_player_manager.c test/trace
...= false
+true (boolean) OR false (boolean) = true
+true (boolean) AND 1 (number) = true
+true (boolean) OR 1 (number) = true
+true (boolean) AND 0 (number) = false
+true (boolean) OR 0 (number) = true
+true (boolean) AND 42 (number) = true
+true (boolean) OR 42 (number) = true
+true (boolean) AND -100000 (number) = true
+true (boolean) OR -100000 (number) = true
+true (boolean) AND (undefined) = false
+true (boolean) OR (undefined) = true
+true (boolean) AND null (null) = false
+true (boolean) OR null (null) = true
+true (boolean) AND _level0 (movieclip) = true
+true (boolean) OR _level0 (moviecl...
2010 Feb 05
1
Strange "rownames"
I find one row in my large dataset. But when I use the "rownames" for the
data on the 100,000 row, the result show nothing.
I try it by the following example, it still likes that.
> tst[rownames(tst)==100000,]
[1] x y
<0 rows> (or 0-length row.names)
##############
> tst=data.frame(x=1:200000,y=200000:1)
> tst[rownames(tst)==1,]
x y
1 1 200000
> tst[rownames(tst)==10000,]
x y
10000 10000 190001
> tst[rownames(tst)==100000,]
[1] x y
<0 rows> (or 0-length r...
2010 Sep 13
2
post
Hello,
I have a question regarding how to speed up the t.test on large dataset. For example, I have a table "tab" which looks like:
a b c d e f g h....
1
2
3
4
5
...
100000
dim(tab) is 100000 x 100
I need to do the t.test for each row on the two subsets of columns, ie to compare a b d group against e f g group at each row.
subset 1:
a b d
1
2
3
4
5
...
100000
subset 2:
e f g
1
2
3
4
5
...
100000
100000 t.test's for each row for these two...
2014 Feb 27
2
Re: [libvirt] LXC, user namespaces and systemd
On 26.02.2014 17:59, Stephan Sachse wrote:
>> # chown -R foo:foo /var/lib/libvirt/filesystems/mycontainer
>
> you must "shift" the uids for the container 0 -> 666, 1 -> 667, 2 ->
> 668. there is a tool for this: uidmapshift
I prepared two containers, the first I used chown, in the second
uidmapshift, here is the results.
./uidmapshift -r
2013 Jul 18
1
if /else in expect script
...quot;\n"
set username $expect_out(1,string)
stty -echo
send_user -- "Please enter your passwd: "
expect_user -re "(.*)\n"
send_user "\n"
set passwd $expect_out(1,string)
set timeout -1
spawn ssh -t $host {sudo -S cp /etc/sudoers /tmp/sudoers-template}
match_max 100000
expect -exact "\[sudo\] password for $username: "
send -- "$passwd\r"
expect eof
set timeout -1
spawn ssh -t $host {sudo -S rm -f /tmp/sudoers.tmp}
match_max 100000
expect eof
set timeout -1
spawn ssh -t $host {sudo -S echo '%tekmark_t1 ALL=(root) NOPASSWD:
/sbin/service,...
2009 Apr 17
3
rnorm() converted to daily
...nd z look ok)?
Does this have something to do with biases due to the relationship between
population and sample-estimates as a function of n samples and sd? Or am I
doing something wrong?
-----------------------------------------------------------------------
set.seed( 1 );
x <- mean( rnorm( 100000, mean=0.08, sd=0.25 ));
set.seed( 1 );
y <- mean( rnorm( 100000, mean=(0.08/252), sd=(0.25/sqrt(252)) )) * 252;
set.seed( 1 );
z <- mean( rnorm( 100000, mean=(0.08/252), sd=0.001 )) * 252;
# -----------------------------------------------------------------------
x # 0.07943898
y # 0.071...
2009 Oct 06
3
rpois formula
Hi all,
It's been a while since i've used R and I can't remember how to do the
following:
i have
a = rpois (100000, x)
b = rpois (100000, y)
what is the code to show that a>b, b>a and a=b to show just the number of
occurances?
at the moment when I type a>b I get a nice long list of true or false.
so i'm hoping to have the following
a>b
> 35000
b>a
> 25000
a=b
> 40000
thanks in ad...
2005 May 05
2
problem with plot() and R 2.1.0
The following line when pasted into an R Console window causes Windows XP to flash a blue screen
and then restart.
R version 2.1.0
>plot(x=c(1:100000),y=sin(c(1:100000)), type="l")
Windows XP SP2
I installed the precompiled version of R 2.1.0
This isn't the data I was originally trying to graph, but a way to reproduce the error I observed.
Plotting without the sin() did not reproduce the error.
I realize this might be unique...
2014 Feb 27
0
Re: [libvirt] LXC, user namespaces and systemd
...) or 969 (uid=81(dbus) + uid=888(foo1)).
> Mapping looks properly. Why use uidmapshift ?, it still performs chown.
> Could you explain more?
# ls -ln uidmapshift-test/
-rw-r--r-- 1 0 0 0 27. Feb 15:50 uid0
-rw-r--r-- 1 81 81 0 27. Feb 15:50 uid81
# /root/uidmapshift -b uidmapshift-test/ 0 100000 1000
# ls -ln uidmapshift-test/
-rw-r--r-- 1 100000 100000 0 27. Feb 15:50 uid0
-rw-r--r-- 1 100081 100081 0 27. Feb 15:50 uid81
correctly mapped 0 to 100000 with a range of 1000
# chown 100000.100000 uidmapshift-test/ -R
# ls -ln uidmapshift-test/
-rw-r--r-- 1 100000 100000 0 27. Feb 15:50 uid0...
2011 Jul 29
4
scripting/littler: How to call function named iteratively (`f1`, `f2`, …)?
Dear R folks,
wanting to compare different implementations of a solution I want to
script it to iterate over the different implementations. Is there a way
to do this in the R shell/command line?
$ more /tmp/iterf.r
f1 <- function(n = 100000,
l = 100000)
{
z = n + l
}
f2 <- function(n = 100000,
l = 100000)
{
z = 2 * (n + l)
}
I tried the following, but it of course does not work.
> source("/tmp/iterf...
2004 Nov 04
3
Finding out the number of times a loop has run
Hi,
Suppose I have:
for(i in 1:100000)
rnorm(100000)
(just a fake example, as my actual example is too long)
Is it possible to get the loop to print out i each time it has run?
Something like:
for(i in 1:100000) {
print(i)
rnorm(100000)
}
will only print i after the loop is completed. But if I want to print out
i w...
2003 Jul 25
1
Multiple expressions in system.time()?
Hi All,
Is it possible for system.time() to measure the time
it takes for a machine to evaluate more than one R
expression?
For example,
# This I can do:
> system.time(x <- rnorm(100000))
[1] 0.07 0.00 0.13 0.00 0.00
# But this I can't:
> system.time(x <- rnorm(100000); new <- sample(x, 100000, replace=T))
Error: syntax error
# Nor this:
> system.time(x <- rnorm(100000)
+ new <- sample(x, 100000, replace=T)
Error: syntax error
I'm trying to compare two...
2009 Mar 25
2
Grouping Numbers
Ugh...This should be very simple, but evidently I am not searching for the proper term.
Given the below:
val_size<-100000
x_vals<-rnorm(val_size)
I would like to group them according to the following
x_vals_mean_tmp[1]<-mean(x_vals[1:10])
x_vals_mean_tmp[2]<-mean(x_vals[11:20])
...
x_vals_mean_tmp[n]<-mean(x_vals[99991:100000])
Then,
I would like to group them according to the following
x_vals_mean_tmp[...
2023 Nov 09
1
help with crash
...#15: [inlined] asterisk pbx.c:4702 pbx_thread()
#16: [0x5b8329] asterisk utils.c:1576 dummy_start()
#17: [0x7f62bec07ea5] libpthread.so.0 :0 __pthread_get_minstack()
#18: [0x7f62bd0fe8dd] libc.so.6 :0 clone()
[2023-11-08 18:14:13] ERROR[571292][C-000017e4] stasis_cache.c: Excessive
refcount 100000 reached on ao2 object 0x3616b38
[2023-11-08 18:14:13] ERROR[571292][C-000017e4] stasis_cache.c: FRACK!,
Failed assertion Excessive refcount 100000 reached on ao2 object 0x3616b38
(0)
[2023-11-08 18:14:13] ERROR[571291][C-000017e3] stasis_cache.c: Excessive
refcount 100000 reached on ao2 object 0x...
2003 Jul 15
0
Why two chisq.test p values differ when the contingency
...ay be due to the way chisq.test
> function handles simulation. Here shows why: (Ted, I think there
> is an error in your code, "tx" should be t(x) )
>
> > x
> [,1] [,2]
> [1,] 149 151
> [2,] 1 8
> > c2x<-chisq.test(x, simulate.p.value=T, B=100000)$p.value
> > for(i in (1:20)){c2x<-c(c2x,chisq.test(x, simulate.p.value=T,
> + B=100000)$p.value)}
> > c2tx<-chisq.test(t(x), simulate.p.value=T, B=100000)$p.value
> > for(i in (1:20)){c2tx<-c(c2tx,chisq.test(t(x), simulate.p.value=T,
> +...
2019 Jan 10
2
mixed versions, mixed UIDs
...d Version 4.8.3
One issue I've been having is trying to get UIDs to coinside between old
and new software versions.
Our Samba 3 configs have the following defined:
idmap config ADSMC:default = yes
idmap config ADSMC:backend = rid
idmap config ADSMC:base_rid=500
idmap config ADSMC:range = 2000-100000
I've set up the following in our Samba 4 server:
idmap config ADSMC:range = 2000-100000
idmap config * :range = 2000-100000
idmap config ADSMC : backend = rid
idmap config * : backend = tdb
In an effort to keep things as compatible as possible between co-existing
old and new servers, I made a...
2012 Oct 24
2
Why portmap is needed for NFSv4 in CentOS6
...sd(8)
#RPCGSSDARGS=""
# Optional arguments passed to rpc.svcgssd. See rpc.svcgssd(8)
#RPCSVCGSSDARGS=""
#
# To enable RDMA support on the server by setting this to
# the port the server should listen on
#RDMA_PORT=20049
And rpcinfo -p:
program vers proto port service
100000 4 tcp 111 portmapper
100000 3 tcp 111 portmapper
100000 2 tcp 111 portmapper
100000 4 udp 111 portmapper
100000 3 udp 111 portmapper
100000 2 udp 111 portmapper
100003 4 tcp 2049 nfs
100003 4 udp 2049...
2000 Nov 08
3
Strange means of numbers drawn from rpois
Dear all,
I think I must be going crazy.... If I do
> mean(rpois(1000000, 14))
I get:
[1] 13.50420
and again:
> mean(rpois(1000000, 14))
[1] 13.49896
> mean(rpois(1000000, 14))
[1] 13.50161
> mean(rpois(1000000, 15))
[1] 14.49250
> mean(rpois(1000000, 15))
[1] 14.49897
> mean(rpois(1000000, 14.5))
[1] 13.99689
> mean(rpois(1000000, 14.5))
[1] 13.9963...
2007 Feb 27
3
looping
...with looping. What I want
to do is repeatedly sample observations (about 100 per sample) from a large
dataset (100,000 observations). I would like the samples labelled sample.1,
sample.2, and so on (or some other suitably simple naming scheme). To do
this manually I would
>smp.1 <- sample(100000, 100)
>sample.1 <- dataset[smp.1,]
>smp.2 <- sample(100000, 100)
>sample.2 <- dataset[smp.2,]
.
.
.
>smp.50 <- sample(100000, 100)
>sample.50 <- dataset[smp.50,]
and so on.
I tried the following loop code to generate 100 samples:
>for (i in 1:50){
>+ smp.[i] &...