search for: glossing

Displaying 20 results from an estimated 137 matches for "glossing".

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...
Just something I thought about today really. Since I am running 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.
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
I just noticed (at least on OpenSSH 3.0p1) that even though I have both RSA and DSA keys available in sshd_config on a server, only a ssh-rsa line shows up in known_hosts on the client side, not a ssh-dss line (that priority may come from the fact that my RSA key is listed before my DSA key in sshd_config). If I comment out the RSA key in sshd_config and restart the server, then the next time the
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)) }
2002 Jun 25
1
Protocol negotiation failed error
When I run smbclient -L "myhostname" I get added interface ip="First IP address" bcast = xxx.xx.xx.xxx nmask=255.255.0.0 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
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, m...
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 wit...
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 easy...
2008 Oct 13
1
na.pass
Hi All, I have a data frame which has columns comprised mainly of "NA"s. I know there are functions na.pass and na.omit etc which can be used in these situations however I can't them to work in this case. I have a function which returns the data according to some rule i.e. removal of N in this code: nep <- function(data) { dummy <- rep(0,378) for(i in 1:378){
2017 Jul 11
1
getting rid of hp c3180
On Tue, Jul 11, 2017 at 02:47:47PM -0500, Valeri Galtsev wrote: > > On Tue, July 11, 2017 2:20 pm, Michael Hennebry wrote: > > I have a hp photosmart C3180 all-in-one and am well and truly sick of it. > > It seems like every time I go on another printing binge, > > I need yet another print cartridge. > > hp-clean doesn't help. > > IIRC this use it or lose
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!
Greetings, everyone. I have Samba 4.4.5, built from source on CentOS 6.8 using Bind 9.8.2 and configured in the last couple months. It’s in place and functioning, but I’m having a few issues I’m trying to iron out. First, the workstations added to the AD domain are not able to make DNS updates if the IP address changes after the domain join. However, at the time of the AD join, the DNS entries
2012 Jul 23
2
Mechanize::Agent#post_connect_hook response != Mechanize#parse response
I''m working through an idea for a db-backed cache for Mechanize#get(). The idea is to use a Mechanize::Agent#post_connect_hook to cached any fetch data, and create a subclass of Mechanize::Agent#get() that checks the cache before calling super. I want to store the un-parsed (raw) page in the db, and call Mechanize#parse when there''s a cache hit, something along these lines:
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