Displaying 20 results from an estimated 10000 matches similar to: "Suppressing row labels."
2005 Mar 02
2
Suppressing observation numbers
Dear R gurus,
Below is a part of the R output. Please consider the two lines:
> data
> model.matrix(m1)
Is there a way of suppressing the observation numbers 1, 2, ...27 in the
output (I don't want these number to appear in the output)?
Regards,
NKN
> # Orthogonal blocking
> data=read.table("cut.txt",header=T)
> attach(data)
> data
b x1 x2 x3
1 1 -1 -1 0
2
2001 Feb 16
2
print.matrix segfaults if rowlab vector too short (PR#850)
print.matrix(x) segfaults if the vector supplied to 'rowlab' is
*shorter* than nrow(x):
> version
_
platform i686-pc-linux-gnu
arch i686
os linux-gnu
system i686, linux-gnu
status
major 1
minor 2.1
year 2001
month 01
day 15
language R
[installed from RPM]
> x<-1:4
> dim(x)<-c(2,2)
> x
[,1] [,2]
[1,] 1 3
[2,] 2 4
2005 Aug 12
3
Dating Objects
Hi
I know this subject has been mentioned before but from the mail archives
I'm under the impression that this is not possible ?
I'm trying to carryout the equivalent of ls -l in R to give some
date/time label to each of my objects
If the case is that there is no equivalent, is it possible to list all
objects in an environment that share a common component ?
So that the common
2012 Nov 15
4
Selecting the "non-attribute" part of an object
I have two matrices, generated by R functions that I don't understand.
I want to confirm that they're the same, but I know that they have
different attributes.
If I want to compare the dimnames, I can say
> identical(attr(tm, "dimnames"), attr(tmm, "dimnames"))
[1] FALSE
or even:
> identical(dimnames(tm), dimnames(tmm))
[1] FALSE
But I can't find any
2012 Jun 26
5
chisq.test
Dear list!
I would like to calculate "chisq.test" on simple data set with 70 observations, but the output is ''Warning message:''
Warning message:
In chisq.test(tabele) : Chi-squared approximation may be incorrect
Here is an example:
tabele <- matrix(c(11, 3, 3, 18, 3, 6, 5, 21), ncol = 4, byrow = TRUE)
dimnames(tabela) <- list(
2009 Sep 07
2
DO NOT REPLY [Bug 6695] New: whitespace problem in directory paths; I know of no work-around
https://bugzilla.samba.org/show_bug.cgi?id=6695
Summary: whitespace problem in directory paths; I know of no
work-around
Product: rsync
Version: 3.0.6
Platform: Other
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo: wayned at samba.org
2017 Apr 05
1
Xen C6 kernel 4.9.13 and testing 4.9.15 only reboots.
On Tue, Apr 4, 2017 at 11:13 AM, Johnny Hughes <johnny at centos.org> wrote:
> On 03/28/2017 04:55 PM, PJ Welsh wrote:
> > The mystery gets more interesting... I now have a CentOS 7.3 Dell R710
> > server doing the exact same thing of rebooting immediately after the Xen
> > kernel load. Just to note this is a second system and not just the first
> > system with an
2017 Mar 28
6
Xen C6 kernel 4.9.13 and testing 4.9.15 only reboots.
The mystery gets more interesting... I now have a CentOS 7.3 Dell R710
server doing the exact same thing of rebooting immediately after the Xen
kernel load. Just to note this is a second system and not just the first
system with an update. I hope I'm not introducing something odd. They only
"interesting" thing I have done for historical reasons is to change the
following
2003 Jan 30
2
print.default and attributes
When something gets printed by the "print.default" function, any extra
attributes are printed without regard to their class attribute (if any). For
example:
> x <- 1:3
> attr( x, 'other') <- factor( c( 'cat', 'dog'))
> attr( x, 'other')
[1] cat dog
Levels: cat dog
> x
[1] 1 2 3
attr(,"other")
[1] 1 2
which is perhaps
2016 Feb 23
2
XSAs 170 and 154, repository layouts, and centos-release-xen 8-1
On Sat, Feb 20, 2016 at 9:24 PM, Sarah Newman <srn at prgmr.com> wrote:
> On 02/17/2016 04:30 AM, George Dunlap wrote:
>> I have the following packages going through the CBS:
>> * A CentOS 7 xen-4.6.1-2, with XSAs 170 and 154
>> * A CentOS 6 xen-4.6.1-2, with XSAs 170 and 154
>> * A CentOS 6 xen-4.4.3-11, with XSAs 170
>>
>> All these should show up in
2017 Oct 24
2
Crash in CentOS 7 kernel-3.10.0-514.16.1.el7.x86_64 in Xen PV mode
On Mon, Oct 23, 2017 at 12:57 PM, Karl Johnson <karljohnson.it at gmail.com>
wrote:
> On Sat, May 20, 2017 at 8:30 PM, Sarah Newman <srn at prgmr.com> wrote:
>
>> I experienced a bug that is likely the same as
>> https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1350373 . Commit
>> b7dd0e350e0bd4c0fddcc9b8958342700b00b168 , which is supposed to fix it,
2007 Apr 17
3
Extracting approximate Wald test (Chisq) from coxph(..frailty)
Dear List,
How do I extract the approximate Wald test for the
frailty (in the following example 17.89 value)?
What about the P-values, other Chisq, DF, se(coef) and
se2? How can they be extracted?
######################################################>
kfitm1
Call:
coxph(formula = Surv(time, status) ~ age + sex +
disease + frailty(id,
dist = "gauss"), data = kidney)
2013 Apr 09
4
Converting matrix to data frame without losing an assigned dimname
Hello All,
Would like to be able to convert a matrix to a dataframe without losing an assigned dimname.
Here is an example that should illustrate what I'm talking about.
tableData <- state.x77[c(7, 38, 20, 46), c(7, 1, 8)]
names(dimnames(tableData)) <- c("State", "")
tableData
State Frost Population Area
Connecticut 139 3100 4862
2017 Apr 03
2
Clocksource boot issues 4.9.13
On Sun, Apr 2, 2017 at 9:22 PM, Sarah Newman <srn at prgmr.com> wrote:
> On 04/02/2017 02:49 AM, Chris Elliott wrote:
>> Hi all
>>
>> I?ve got a few Intel Z87 chipset machines with Adaptec 5405 raid cards (latest firmware), they work fine on 3.18 but during Dom0 boot using kernel
>> 4.9.13 it hangs at ?Using clocksource tsc? and the aacraid driver keeps trying to
2019 May 16
1
centos-virt CPU microcode updates?
Not sure about CentOS 6, but this was covered previously (at least for 7...not sure how much they differ)...not that I can find the message now, but here's what I recall/pieced together from bash history that works on CentOS 7:
If the microcode you want is in the microcode_ctl package:
mkdir -p /etc/microcode_ctl/ucode_with_caveats/
touch /etc/microcode_ctl/ucode_with_caveats/force
yum
2024 Apr 25
1
how to block brute force attacks on reverse tunnels?
On 25.04.24 17:15, openssh-unix-dev-request at mindrot.org digested:
> Subject: how to block brute force attacks on reverse tunnels?
> From: Steve Newcomb <srn at coolheads.com>
> Date: 25.04.24, 17:14
>
> For many years I've been running ssh reverse tunnels on portable Linux,
> OpenWRT, Android etc. hosts so they can be accessed from a server whose
> IP is stable
2007 Jan 07
3
MDS in 3D
Hi,
I have tried to develop multidimensional scaling for 3D space using PCA without success, yet;-) Is there some application ready in R?
Cheers,
Atte
2017 May 17
2
4.9 kernel fails to boot because it didn't have the mpt3sas module
On Wed, May 17, 2017 at 10:07 AM, Sarah Newman <srn at prgmr.com> wrote:
> On 05/16/2017 09:04 PM, Jerry wrote:
> <snip>
> >
> > Turns out dracut was unable to mount the root file system. So I went
> back
> > into the 3.10 kernel again to see if the mpt2sas or mpt3sas driver was in
> > its initramfs file... and it wasn't:
> >
> >
>
2015 Mar 16
2
CentOS 6 VM image for paravirtualizaton on CentOS Xen server
On Sun, Mar 15, 2015 at 8:26 PM, Sarah Newman <srn at prgmr.com> wrote:
> On 03/15/2015 03:25 PM, Nico Kadel-Garcia wrote:
>> So I'm right back to my effectively unanswered original questions. So
>> please: I asked a very specific pair of questions, and they remain
>> unanswered. CentOS 5 Xen server (hypervisor, or Dom0, whatever we want
>> to call it this
2009 Mar 05
3
methods package
I'm working on the next version of coxme, one step of which is converting
the bdsmatrix library from Splus to R. Actually, it is a conversion from
S4 methods as first described in the Green book to S4 methods as they
currently exist. Mostly it's going ok, but not entirely.
1. The biggest issue is lack of documentation. The online help pages have
not been a help; they keep saying