Displaying 20 results from an estimated 36 matches for "stat1".
Did you mean:
state
2009 Jun 18
2
Any method to speed up this problem?
Hi all,
Suppose I have a vector like this:
[1] "STAT1" "STAT1" "STAT1" "STAT1" "GAPDH" "GAPDH" "GAPDH" "ACTB"
"ACTB"
[10] "ACTB" "DDR1" "RFC2" "HSPA6" "PAX8" "GUCA1A" "UBE1L" &q...
2006 May 29
2
parameter-restrictions in OPTIM
Ein eingebundener Text mit undefiniertem Zeichensatz wurde abgetrennt.
Name: nicht verf?gbar
URL: https://stat.ethz.ch/pipermail/r-help/attachments/20060529/2d606d35/attachment.pl
2010 Jun 24
1
?to calculate sth for groups defined between points in one variable (string), / value separating/ spliting variable into groups by i.e. between start, NA, NA, stop1, start2, NA, stop2
...quot;Stop2", "Stop2", "Stop2")
C.df<-data.frame(cbind(c0,c1,c2,c3,c4))
colnames(C.df)<-c("c0","c1","c2","c3","c4")
C.df$c5<-paste(C.df$c3,C.df$c4,sep="-")
C.df
# NEEDED RESULTS
# needed result
# for Stat1-Stop1: mean(20,30,40,50)
# for Stat2-Stop2: mean(c(10,60,20,30,40,50,30,10,0,NA,20,10.3444), na.rm=T)
#mean:
c1 c3 c4 c5
20 Start1 Stop1 Start1-Stop1
25.48585 Start2 Stop2 Start2-Stop2
#sum
# for Stat1-Stop1: sum(20,30,40,50)
# for Stat2-Stop2: sum(c(10,60,2...
2009 Mar 31
6
RELENG_7 ata panic on atacontrol attach
Hi there colleagues,
atapci3: <nVidia nForce MCP55 SATA300 controller> port
0xbc00-0xbc07,0xb880-0xb883,0xb800-0xb807,0xb480-0xb483,0xb400-0xb40f mem
0xefcb3000-0xefcb3fff irq 23 at device 5.2 on pci0
atacontrol detach ata7
- insert ATA disk (ad14)
atacontrol attach ata7
pinics with Fatal trap 12: page fault while in kernel mode
(kgdb) bt
#0 doadump () at pcpu.h:196
#1 0xc0533227
2014 Sep 08
1
[PATCH] gpio: rename g92 class to g94
...ALINGS IN THE SOFTWARE.
- *
- * Authors: Ben Skeggs
- */
-
-#include "priv.h"
-
-void
-nv92_gpio_intr_stat(struct nouveau_gpio *gpio, u32 *hi, u32 *lo)
-{
- u32 intr0 = nv_rd32(gpio, 0x00e054);
- u32 intr1 = nv_rd32(gpio, 0x00e074);
- u32 stat0 = nv_rd32(gpio, 0x00e050) & intr0;
- u32 stat1 = nv_rd32(gpio, 0x00e070) & intr1;
- *lo = (stat1 & 0xffff0000) | (stat0 >> 16);
- *hi = (stat1 << 16) | (stat0 & 0x0000ffff);
- nv_wr32(gpio, 0x00e054, intr0);
- nv_wr32(gpio, 0x00e074, intr1);
-}
-
-void
-nv92_gpio_intr_mask(struct nouveau_gpio *gpio, u32 type, u32 mask, u...
2015 Oct 22
2
[PATCH] Added btrfs support for vfs_min_size.
...<stdlib.h>
#include <unistd.h>
+#include <mntent.h>
+#include <sys/stat.h>
+#include <sys/types.h>
#include "daemon.h"
#include "actions.h"
+static char*
+get_mount_point (const char *device)
+{
+ FILE *fp;
+ struct mntent *m;
+ struct stat stat1, stat2;
+ char *path;
+
+ if (stat (device, &stat1) == -1) {
+ reply_with_perror ("stat: %s", device);
+ return NULL;
+ }
+
+ /* NB: Eventually we should aim to parse /proc/self/mountinfo, but
+ * that requires custom parsing code.
+ */
+ fp = setmntent ("/proc/mou...
2018 Apr 10
0
[PATCH v2 3/5] daemon: move Lvm.lv_canonical to new Lvm_utils module
...luted method to
- * determine this, by listing out known LVs and checking whether the
- * rdev (major/minor) of the device we are passed matches any of them.
- *
- * Note use of 'stat' instead of 'lstat' so that symlinks are fully
- * resolved.
- *)
-let lv_canonical device =
- let stat1 = stat device in
- let lvs = lvs () in
- try
- Some (
- List.find (
- fun lv ->
- let stat2 = stat lv in
- stat1.st_rdev = stat2.st_rdev
- ) lvs
- )
- with
- | Not_found -> None
diff --git a/daemon/lvm.mli b/daemon/lvm.mli
index e9a6faeca..59216843...
2005 Mar 03
2
reading row vectors from file
..., google searches, etc..
Something like read.csv( "transpose stat |" ) might be nice, e.g., the
trailing pipe symbol invokes the argument as a shell pipeline, then
reads from stdin, but I'm just making this up... Actually, this does
work:
t <- read.csv( pipe("transpose stat1") )
but it does rely on an external transpose command. Is there a way to
read line-oriented vector files directly?
Thanks for any help or leads,
Ken
--
Ken Irving, Research Analyst, fnkci at uaf.edu
Water and Environmental Research Center
Institute of Northern Engineering
University of...
2015 Oct 23
0
Re: [PATCH] Added btrfs support for vfs_min_size.
...point (const char *device)
> +{
This function now exists in daemon/mount.c and here. It should
be shared. Just make the function in daemon/mount.c non-static,
and declare it in daemon/guestfsd.h, and you don't need the copy.
> + FILE *fp;
> + struct mntent *m;
> + struct stat stat1, stat2;
> + char *path;
> +
> + if (stat (device, &stat1) == -1) {
> + reply_with_perror ("stat: %s", device);
> + return NULL;
> + }
> +
> + /* NB: Eventually we should aim to parse /proc/self/mountinfo, but
> + * that requires custom parsing co...
2011 Apr 27
3
[LLVMdev] Can I get the binary address of a for-loop statement?
Hi, all
What I want to do is to locate the range of a for-loop statement in
a binary. For example, given a for-loop statement belows,
for (stat1; stat2; stat3) {
/* do something */
}
Is it possible to get information about the range (binary address)
of the above for-loop, say, 0x0100 - 0x0120.
One idea comes up in my mind is adding passes to retrieve such
information in LLVM, then use llvm-gcc to compile the code.
Any suggestion...
2009 Apr 29
1
ATA DMA issues - are there problems lurking in 7.1?
...second half of the drive, and make an entry into the XP boot loader.
Reboot into the fresh BSD install - now the trouble begins...
I periodically receive the following messages:
Apr 29 01:07:45 udns kernel: ata0: reiniting channel ..
Apr 29 01:07:45 udns kernel: ata0: reset tp1 mask=03 ostat0=58 ostat1=50
Apr 29 01:07:45 udns kernel: ata0: stat0=0x50 err=0x01 lsb=0x00 msb=0x00
Apr 29 01:07:45 udns kernel: ata0: stat1=0x00 err=0x01 lsb=0x14 msb=0xeb
Apr 29 01:07:45 udns kernel: ata0: reset tp2 stat0=50 stat1=00
devices=0x9<ATAPI_SLAVE,ATA_MASTER>
Apr 29 01:07:45 udns kernel: ad0: setting PI...
2013 Mar 07
5
multiple plots and looping assistance requested (revised codes)
Hi Irucka,
I tried it and was able to plot it without any errors.? Here, your code indicates you need two lines. temper[[i]][1]
?temper[[1]][1] # which is the column 1.
? Month
1???? 1
2???? 2
3???? 3
?temper[[1]][2]
#? Data1
#1?? 1.5
#2? 12.3
#3? 11.4
Suppose I use names(temper) instead of seq_along(temper)
pdf("irucka.pdf")
?lapply(names(temper),function(i)
2018 Jun 15
1
Mounting samba share
...a samba share from a host server using pam_mount module. This is my smb.conf for client machine and my pam-mount.conf.xml.
[global]
log level = all:10
security = ads
# auth methods = guest sam winbind:ntdomain
client ldap sasl wrapping = seal
netbios name = STAT1
realm = EXAMPLE.EDU
workgroup = WORKGROUP
client max protocol = NT1
idmap config * : backend = ldap
#idmap config * : ldap_url = ldaps://newserver.example.edu
idmap config * : ldap_url = ldap://newserver.example.edu
idmap config *...
2002 Apr 15
1
Re: Writting R Function
...,
I think I found the problem. It lies in my Fortran program. Is there a
way, after a DO loop, to make sure it does NOT return anything?
Cheers,
Kevin
On Mon, 15 Apr 2002, Ko-Kang Kevin Wang wrote:
> Date: Mon, 15 Apr 2002 17:27:20 +1200 (NZST)
> From: Ko-Kang Kevin Wang <kwan022 at stat1.stat.auckland.ac.nz>
> To: R Help <r-help at stat.math.ethz.ch>
> Subject: Writting R Function
>
> Hi,
>
> Suppose I have a function as below:
> Fibonacci <- function(n, all = T) {
> .Fortran("fibonacci",
> ans = as.double(n)...
2011 Apr 27
0
[LLVMdev] Can I get the binary address of a for-loop statement?
.... See http://llvm.org/docs/SourceLevelDebugging.html for an overview.
Regards,
-Jim
On Apr 26, 2011, at 7:57 PM, 陳韋任 wrote:
> Hi, all
>
> What I want to do is to locate the range of a for-loop statement in
> a binary. For example, given a for-loop statement belows,
>
> for (stat1; stat2; stat3) {
> /* do something */
> }
>
> Is it possible to get information about the range (binary address)
> of the above for-loop, say, 0x0100 - 0x0120.
>
> One idea comes up in my mind is adding passes to retrieve such
> information in LLVM, then use llvm-gcc to...
2012 Mar 09
5
[PATCH 0/5] Fixes to resize2fs (RHBZ#755729, RHBZ#801640)
https://bugzilla.redhat.com/show_bug.cgi?id=755729
This bug reports that the error message printed by the resize2fs API
calls (which comes directly from the resize2fs command) says:
Please run 'e2fsck -f /dev/vda1' first.
That command is not possible from guestfish (where it would be
'e2fsck-f' or 'e2fsck ... forceall:true').
Fixing that bug caused this bug:
2018 Apr 10
9
[PATCH v2 0/5] daemon: generate almall the API OCaml interfaces
Hi,
as a followup for the signature fix for mount_vfs [1], here it is a
patch series to generate automatically all the OCaml interfaces of
daemon actions.
[1] https://www.redhat.com/archives/libguestfs/2018-April/msg00059.html
Thanks,
Pino Toscano (5):
daemon: directly use Optgroups
daemon: use the structs from the Structs module
daemon: move Lvm.lv_canonical to new Lvm_utils module
2018 Jun 15
0
Mounting samba share
...ount module. This is my smb.conf for client machine and my
> pam-mount.conf.xml.
>
>
> [global]
> log level = all:10
> security = ads
> # auth methods = guest sam winbind:ntdomain
> client ldap sasl wrapping = seal
> netbios name = STAT1
> realm = EXAMPLE.EDU
> workgroup = WORKGROUP
> client max protocol = NT1
> idmap config * : backend = ldap
> #idmap config * : ldap_url = ldaps://newserver.example.edu
> idmap config * : ldap_url = ldap://newserver.exam...
2003 Apr 04
0
How does UDMA mode get set?
...rbose mode, and here are the relevant parts from dmesg.
atapci0: <Intel ICH ATA66 controller> port 0xffa0-0xffaf at device 31.1
on pci0
ata0: iobase=0x01f0 altiobase=0x03f6 bmaddr=0xffa0
ata0: mask=03 ostat0=50 ostat2=50
ata0-master: ATAPI 00 00
ata0-slave: ATAPI 14 eb
ata0: mask=03 stat0=50 stat1=10
ata0-master: ATA 01 a5
ata0: devices=09
ata0: at 0x1f0 irq 14 on atapci0
...
ad0: success setting UDMA2 on Intel chip
Creating DISK ad0
ar: FreeBSD check1 failed
ad0: <Maxtor 4D040H2/DAH017K0> ATA-6 disk at ata0-master
ad0: 38146MB (78125000 sectors), 77504 C, 16 H, 63 S, 512 B
ad0: 16 s...
2002 Feb 04
1
row.names in read.table()
Hi,
I was trying to read in the following data set by using:
gas <- read.table("gas.tab", header = T)
when I got the error message:
Error in "row.names<-.data.frame"(*tmp*, value = row.names) :
duplicate row.names are not allowed
Any help are appreciated.
Thanks,
Ko-Kang Wang