search for: signifiant

Displaying 20 results from an estimated 467 matches for "signifiant".

Did you mean: significant
2011 Sep 07
1
Signify level of significance
Im doing test on my sample using 1-sample Kolmogorov-smirnov test(poisson distribution) to specify my sample obtain avalanche effect. before i can compare my D value with the critical value(Dn, alpha), i have to specify which level of significance to use (eg. alpha = 0.01, 0.05, etc) and i don't understand, why is it related to the probability that the hypothesis will be rejected when it is in
2011 Feb 13
1
Should leading and trailing spaces between backticks be preserved?
Hi folks, Yesterday I raised an issue about inconsistent preservation of whitespace<http://www.freewisdom.org/projects/python-markdown/Tickets/000087>in Python-Markdown. >>> import markdown >>> md = markdown.Markdown() >>> md.convert('Added `>>> ` to signify user input.') u'<p>Added
2006 Jun 22
1
As.Factor with Logistic Regression
I am modeling the probability of player succeeding in the NFL with a binomial logistic regression with 1 signifying success and 0 signifying no success. I performed the regression of the binomial variable against overall draft position using the college conference for which each player played as a factor using the as.factor(Conference) command. My question is: How do I plot specific factors
2004 Dec 08
2
similarity matrix conversion to dissimilarity
I have a matrix of similarity scores that I want to convert into a matrix of dissimilarity scores so that I can apply some clustering methods to the data. That is, high values in my matrix signify similarity and low values (zero being the lowest) signify no similarity. What functions/options in R or its packages are available for making this kind of transformation of a matrix?
2004 Oct 04
2
trouble accessing mbox folders with simultaneous logins
Hi all! I have setup dovecot (RPM) on a Fedora Core 2 machine using LDAP for authentication. It all seems to work pretty well, except for simultaneous logins. I am using mbox files to store the mail as follows (from /etc/dovecot.conf): default_mail_env = mbox:~/.mail/:INBOX=/var/mail/%u:INDEX=MEMORY So the INBOX file is stored in /var/mail, other mailfolders are stored in the users
2008 Mar 26
5
S4 slot with NA default
Hi How do I specify an S4 class with a slot that is potentially numeric, but NA by default? I want the slot to be NA until I calculate its value (an expensive operation, not needed for all applications). When its value is known, I will create a new object with the correct value inserted in the slot. I want "NA" to signify "not known". My attempt fails because
2002 Sep 23
1
interesting WINS resolution problem iwth 2.2.5 PDC
I'm running a Samba PDC at home (v2.2.5, recently upgraded from v2.2.3 in an attempt to solve this problem) on RedHat 7.3. I have domain logon, printing and all that good stuff working just fine to a couple of XP and 2000 clients. But, I want to mount a couple shares from the domain clients to the server, and that works just fine except for one client. fujisawa(6) ~> smbmount
2001 Nov 01
4
Auto starting the daemon in redhat
I am having a problem with the auto running of the samba daemons in red hat I got the smb script from the site and place it as /etc/rc.c/init.d/smb Then I set up symbolic links in the places it told me. I used lm -s ..... for the links I went into the place where one link was and I use colors to signify what something is. All of the links are in cyan except for the one created which is white
2006 Jul 14
6
Don''t understand :: in ActionController::Base
Maybe this should apply to Ruby forums directly, but I''ll try here. I understand the concept of classes and subclasses thanks to the excellent "Programming Ruby - The Pragmatic Programmer''s Guide". However, I don''t understand what :: signify in terms of inheritance, parent and child in e.g. ActionController::Base -- Posted via http://www.ruby-forum.com/.
2007 Aug 14
4
Recognize 800 number
Is there a way to recognize if someone called our PRI using an 800 number? The DID is showing my 4 digit primary line, not anything obvious signifying that an 800 number is called? ________________________________ This e-mail, facsimile, or letter and any files or attachments transmitted with it contains information that is confidential and privileged. This information is intended only for the
2016 Jun 19
3
What version comes after 3.9? (Was: [3.9 Release] Release plan and call for testers)
> On Jun 19, 2016, at 4:25 AM, via llvm-dev <llvm-dev at lists.llvm.org> wrote: <snip> > >>>> Given that our releases are time-based rather than feature-based, >>>> I >>>> don't see a distinct major / minor version being anything other >>>> than >>>> arbitrary, so I'd suggest we take 4.0 as our next release, 4.1
2010 Jan 25
2
[LLVMdev] Any extend
Hi, I'm building a backend for a 64-bit target based on the existing Mips 32 one and I've come up against a problem with 32-bit loads. If you load a 32-bit value into a register this needs extending to fit into a native 64-bit register. The initial selection DAG acomplishes this using an any_extend node, which isn't handled later on by any instruction selector and thus LLVM
2011 Sep 13
2
why VAD modifies my voice data?
Hello, I'm using Speex Preprocessor to supress noise, eliminate echo etc. But I have another preprocessor state that I want to use ONLY to determine voice activity. int res = speex_preprocess_run(m_VADOnly, (spx_int16_t *) pStreamSampleBuffer); pStreamSampleBuffer is modified after call to speex_preprocess_run. I have manually turned off noise suppression and AGC but anyway - VAD modifies
2005 Dec 13
1
Problem with understanding output of Cox model
Hi all, I am using a 'tricked' Cox Hazard regression model for discrete choice habitat modelling. However, I'm having a hard time understanding the meaning of the first line the following part of the summary() output: Rsquare= 0.307 (max possible= 0.475 ) Likelihood ratio test= 91.8 on 12 df, p=2.23e-14 Wald test = 26.3 on 12 df, p=0.00977 Score (logrank) test = 58.6 on 12 df,
2005 Sep 03
2
[OT] Services for Unix being built into Win2K3-R2
I found this article about Microsoft SFU being built into the new Windows 2003 Server R2 very interesting. http://news.com.com/Microsoft+makes+Unix+changes/2100-1016_3-5845790.html?tag=cd.top What does this signify? Is Windows ready to really co-exist with Unix / Linux ... or are they going to try and provide similar functionality because they recognize it is better technology moving forward?
2006 Jun 12
2
Validating a non-object attribute in a form via checkbox?
Hi there A user can place an ad with various attributes via a form; however, I want the user to check a box signifying that they''ve read the terms and conditions for use of the site. So the ''terms'' is not an attribute of the Advertisement model. I could check that the user has ticked the box in my controller but would like to bundle this up with the validation
2008 Nov 08
4
Variable mpid - what is it?
DTraceToolkit has a dtrace script (Proc/pidpersec.d) that refers to a variable mpid as below profile:::tick-1sec { printf("%-22Y %8d %6d\n", walltimestamp, `mpid, pids); pids = 0; } Where is `mpid getting picked from (it isn''t declared anywhere else)? What does the character ` in `mpid signify? I do not see any reference to this variable in the dtrace
2015 Mar 25
2
Human readable user names vanishing from acls
When setting file permissions from MS environment to a file on a Samba4 share, it can be made in clear text with human readable user/group names and the rights seem to work. However when checking the permissions again from an MS environment, instead of human readable user/group names there are plain SID numbers in their place and there is an icon apparently signifying an unknown SID. How to keep
2004 Feb 19
3
Channels set to zero?
I seem to have run into a slight problem in my decode/cache routine. For some reason, my ov_info struct is saying that the channels in the bitstream are zero. Is this normal for certain files, and zero signifies something, or is something wrong? The ov_info struct DOES get filled (it isn't NULL), but channels gets set to zero. This of course can cause problems while calculating the buffer
2005 Mar 23
2
R accuracy
...nt(m,digits=22) V1 299.85239999999993 The certified value of the mean is 299.85240, so I try > print(m-299.8524) V1 -5.684342e-14 > print(m-299.8524,digits=15) V1 -5.68434188608080e-14 Does it have a sens to print with more than 15 signifiant digits? Why is the difference not equal to zero? I am using R 2.0.1 under Windows XP. Regards, Anthony Landrevie --------------------------------- [[alternative HTML version deleted]]