Displaying 20 results from an estimated 137 matches for "gloss".
Did you mean:
loss
2006 Feb 16
2
MANOVA: how do I read off within and between Sum-of-Squares info from the manova result?
Hi all,
I am experimenting the function "manova" in R.
I tried it on a few data sets, but I did not understand the result:
I used "summary(manova_result)"
and "summary(manova_result, test='Wilks')"
and they gave a bunch of numbers...
But I need the Sum-of-Squares of BETWEEN and WITHIN matrices...
How do I read off from the R's manova results?
Any
2003 Aug 15
4
Simple question on Wins...
...ning samba 2.2.8a as a PDC on my network and all of my
workstations for my clients are Windows 2000 Pro, would it be better to set
up the PDC to run as a wins server? wins server = yes
I was just curious because I found some documentation on the wins server
option, but for the most part, it was glossed over with real no
explanation. Granted, I know what wins purpose is, but would like to find
out more about better implementation in my network..
Thanks.
Jason
2006 Mar 30
2
Unbalanced Manova
Dear all,
I need to do a Manova but I have an unbalanced design. I have
morphological measurements similar to the iris dataset, but I don't have
the same number of measurements for all species. Does anyone know a
procedure to do Manova with this kind of input in R?
Thank you very much,
Naiara.
--------------------------------------------
Naiara S. Pinto
Ecology, Evolution and Behavior
1
2016 Mar 16
2
difference between --target, -mcpu, -march
I'm confused about the clang --target, -mcpu, -march
Can someone give a clear explanation on what is the difference between them?
Originally I thought need to specify -mcpu (which I assume means CPU) and
-march but then I can't figure out how --target fits into the picture.
Sometimes it tells me that -march or -mcpu options is not used. I would
really appreciate any help on this.
--
2016 Mar 18
2
difference between --target, -mcpu, -march
...t; for your compile and
> to tell the backend to generate haswell specific code.
>
> Let's say you instead want to compile for arm-linux-gnu (just your basic
> arm linux machine), you'd use:
>
> clang -target arm-linux-gnu foo.c <some other options>
>
> I'm glossing over this a bit because it's not relevant to what you asked,
> but the other options there are going to be things like a sysroot where you
> can get the headers and libraries for an arm-linux-gnu machine, because
> they're likely not installed on your x86_64-linux-gnu machine.
&...
2002 Jan 10
4
Potential SSH2 exploit
...n't that a potential opening for a man-in-the-middle exploit? Somebody
could take over a DNS name, offer only a DSA key, and forward traffic to
the real host. SSH users expect that once they've established the identity
of a host they're safe from man-in-the-middle exploits so they may gloss
over the warning of an additional key being added. Maybe the OpenSSH ssh
client should retrieve and store both kinds of host keys if they're missing
from known_hosts and the server has them available. I don't know if that
would take a protocol change or not but I doubt it because ssh-keys...
2009 Nov 10
1
Is it possible to detect whether running as Rscript?
I would like to write a block of code that runs when a script is being
run from Rscript, but not to run if the same file is being source()d,
or submitted via ESS, etc. As a gloss I would like to write a file
that looks somewhat like:
#!/usr/bin/env Rscript
my.func <- function(...) {
#do something...
}
if ( #is.running.Rscript# ) {
do.call(my.func, commandArgs(trailingOnly=TRUE))
}
If it helps, I'm thinking of something similar to the Python idiom of
writing...
2002 Jun 25
1
Protocol negotiation failed error
...added interface ip="Second IP address" bcast = xx.xxx.xxx.xx
nmask=255.255.255.0
protocol negotiation failed .
any insights on why this is happening.
Thanks,
------------------------------------------------------
Vijay Chebolu
Wilco Systems Inc
STP Gloss Bureau An ADP Company
Tel +1 (201) 714 8112 Tel +1 (212) 589 2000
Fax +1 (201) 714 3711 Web www.wilco-int.com
Mail vchebolu@wilco-int.com
------------------------------------------------------
This message is confidential and may also be legally...
2016 Nov 03
1
CTDB and locking issues in 4.4.6 (Classic domain)
...doing
> > what it is meant to. That is, it makes sure that Samba processes see
> > the same TDB records on all nodes.
>
> hm, smbstatus does a db traverse while smbclient will trigger a
> migrate record, so both use different ctdb protcol ops, don't they?
Sure. I was glossing over a lot of details... but I hope we would
notice major breakage like that... :-)
> > Not sure what's going on with the rest of it. Doing a bit of testing...
>
> I tested on a 3 node test cluster, with 4.4.x and master, works as
> expected.
Yay!
peace & happiness...
2014 Jan 31
5
[LLVMdev] Sanitizers libs in Compiler-RT
...' informally, but perhaps better called 'libclang_rt', which provides the core necessary runtime library facilities to compile C or C++ applications. It's analogous to libgcc but without some of the unwinding code (as I understand it, there may be details I'm wrong about here or glossing over, but it's not relevant to the organization of things).
For some reason, the (generic, language-agnostic) unwind code is in libcxxabi. There was some discussion about moving it into the compiler-rt repository, where it would make sense. No one objected, but I'd rather not move it...
2003 Jun 07
1
Extracting Numbers from MANOVA output
Hi,
Suppose I have:
> summary(manova(plank.man))
Df Pillai approx F num Df den Df Pr(>F)
plankton.new[, 1] 1 0.5267 9.8316 6 53 2.849e-07 ***
Residuals 58
---
Signif. codes: 0 `***' 0.001 `**' 0.01 `*' 0.05 `.' 0.1 ` ' 1
My understanding is the MANOVA summary returns a list.
2012 May 11
1
domain/number line/range reduction problem
...f anyone knows of a better way to do this.
The problem: I have endpoints of one x range (x_rng) and an unknown number
of s ranges (s[#]_rng) also defined by endpoints. What I want are the parts
of the x ranges that don't overlap the s ranges. The examples below
demonstrate what I mean. I'm glossing over an obvious endpoint
inclusion/exclusion issue here for simplicity, but in a perfect world the
resulting ranges would not include the s range endpoints and would include
endpoints of the x range if they were not eliminated by an s range.
Is there some function(s) in R that would make this e...
2008 Oct 13
1
na.pass
...if(is.na(data$with.Wcode)[i])
data$with.Wcode[i] <- "O"
}
for(i in 1:378){
if(data$with.Wcode[i]=="N")
dummy[i] <- i
}
return(data[-dummy,])
}
However, I really don't want to replace the NAs with "O". I'd just like to
gloss over them. I can't just delete them because the structure of the data
frame needs to be maintained. Can anyone suggest how I can write in a line
or two to ignore the NAs instead of replacing them? I've tried this code
but it doesn't work!
nep <- function(data)
{
dummy <...
2017 Jul 11
1
getting rid of hp c3180
...h printer about 10 years ago. Still
in use after about 300,000 pages.
At the time we had a PhotoJet for printing pictures. The
quality of the laser prints was sufficient for our needs
so the PJ sits in a closet.
One thing that helps the appearance of laser printed
photos is to use a heavy, high gloss paper.
Jon
--
Jon H. LaBadie jon at jgcomp.com
11226 South Shore Rd. (703) 787-0688 (H)
Reston, VA 20190 (703) 935-6720 (C)
2003 Nov 20
4
p value in MANOVA
Dear R users,
Can anyone tell me how to get the p value out of the output from
summary.manova?
I tried all the methods I can think of, but failed.
Many thanks
Yu-Kang
_________________________________________________________________
¥ß§Y¥Ó½Ð MSN Mobile ªA°È¡G¦b±zªº¤â¾÷¤W¦¬µo MSN Hotmail
http://msn.com.tw/msnmobile
2007 Mar 16
2
MANOVA permutation testing
Hi,
I've got a dataset with 7 variables for 8 different species. I'd like
to test the null hypothesis of no difference among species for these
variables. MANOVA seems like the appropriate test, but since I'm
unsure of how well the data fit the assumptions of equal
variance/covariance and multivariate normality, I want to use a
permutation test.
I've been through CRAN looking at
2016 Sep 30
1
Workstation AD members failing DNS updates - and worse!
...errors, and nothing. I can’t figure out what I may have changed which made my working configuration stop working.
So, I’d like to get this working first and then try to get the workstation DNS updates functioning, too.
Any ideas? I’m completely lost (or, looking at things for so many hours have glossed over my poor eyes and I just can’t see what is the problem).
Best,
Mike
2012 Jul 23
2
Mechanize::Agent#post_connect_hook response != Mechanize#parse response
...nough information in the db cache so
Mechanize#parse(uri, response, contents) can parse it. How do I
convert a Net::HTTPOK into a Mechanize::Header?
* Am I pursuing a fools errand? That is, has someone already
implemented this in some lovely gem?
[Minutia: There are lots of details I''ve glossed over: I don''t want to
cache responses that are the result of errors. I want to implement
and honor an expires_at: timestamp in the cached record. I''ll have to
decide if chunked responses need special handling. Probably other
things.]
2008 Jul 15
2
extracting elements from print object of Manova()
Hi there,
Does anyone know how to extract elements from the table returned by Manova()?
Using the univariate equivalent, Anova(), it's easy:
a.an<-Anova(lm(y~x1*x2))
a.an$F
This will return a vector of the F-values in order of the terms of the model.
However, a similar application using Manova():
m.an<-Manova(lm(Y~x1~x2))
m.an$F
Returns NULL. So does any attempt at calling the
2017 Jul 10
5
GEP with a null pointer base
Chris,
nice segue to Swift ! :-), but...
The question is what should LLVM do with UB in general, saying that
we are going to change one specific idiom from undefined to defined glosses
over the real question: why should we ever optimize / delete any UB at all ?
This “depressing and faintly terrifying thing” as you call it, should be viewed not as
an opportunity for optimization, but rather as the source of bugs that need to be
warned about at the very least.
The current act...