search for: vallues

Displaying 9 results from an estimated 9 matches for "vallues".

Did you mean: values
2006 Mar 02
4
Skip last NA's?
I wonder if anyone could help me find an expression for skipping the last missing values in a vector? The kind of material I have is something like x<-c(23,12,NA,23,24,21,NA,NA,NA) I would like to skip the last NA's, but not the ones in between other vallues. Any hints? (Why not do this by simply take x[1:6]? I have several vectors a couple of thousand observations long with varying numbers of NA's in the end. I'd prefer not to search through all of these one at a time.) Robert
2010 Nov 17
6
How many Asterisk PBX operating in the World?
Hi, Sorry for maybe not a very list related topic, but I have always been curious if there is information on how many Asterisk based PBXs are operating Worldwide? Thanks and hope the community will not reject my curiosity! :) Best Regards, Vallu Sevana Oy -------------- next part -------------- An HTML attachment was scrubbed... URL:
2012 Jul 05
3
Maximum Likelihood Estimation Poisson distribution mle {stats4}
Hi everyone! I am using the mle {stats4} to estimate the parameters of distributions by MLE method. I have a problem with the examples they provided with the mle{stats4} html files. Please check the example and my question below! *Here is the mle html help file * http://stat.ethz.ch/R-manual/R-devel/library/stats4/html/mle.html http://stat.ethz.ch/R-manual/R-devel/library/stats4/html/mle.html
2005 Nov 09
0
mozilla and roming profiles... THE SOLUTION
...ogon goes faster. - when creating backup you have ALL user data. Nadeel: - same as above - other apps also doen't work which uses %application data%. ================================ Mozilla config ================================ Prefs.js look/adjust through http://about:config shows the vallues of the user.js Changes only in prefs.js So the user kan only change prefs.js and User.js can be used as a policy example: * user_pref("browser.startup.homepage", "http://server/home.html <http://server/home.htmle> ");
2012 Jul 11
0
declaring negative log likelihood of a distribution
...y, n=7, imax=2000)) > estimates2 Call: mle2(minuslogl = Loglik.newdis2, start = list(a = 1, b = 1), data = list(x = values, fre = frequency, n = 7, imax = 2000)) Coefficients: a b 0.7574478 0.6399205 Log-likelihood: -815.48 /#here the values are not equal to the vallues provided in the journal paper #also thee inner series doesn't converge even for very large number #values given in the paper are a= 0.70 and b= 0.59 and -loglikelihood = 813.6939/ * Please point out my mistakes and help me on this r-code? Thank you very much!!* -- View this mes...
2010 Dec 08
5
How to quickly move on to Dahdi channels when SIP provider fails?
Hi Everyone, There are situations when internet connection is lost, SIP provider fails, or even authentication to SIP provider fails, and we want to use the backup Dahdi channels (PSTN). As simple as it may sound but with the many different situations and error messages it seems like it's not so easy to predict all the errors. Is there any single parameter value that can be changed to send
2002 Aug 03
0
Fw: Samba 3.0-alpha 18 with ldapsam backend and primary gid of user?
...ere be a different solution? Also, the params: ldap suffix = "dc=techdream,dc=net" ldap user suffix = "ou=Users" ldap machine suffix = "ou=Computers Are, in my opinion "fairly undocumented" and I have not been able to gather more information about them, so, the vallues that i've used are only guessed by myself and I would like to know if their right or wrong. It also seems to me that the smbgroupedit program is not usefull when authenticating against a ldap server (I have tried to map some of the unix groups to the "domain groups" but didn't no...
2015 Aug 19
3
asterisk server stress test
Am 19.08.2015 um 19:07 schrieb Steve Edwards: > Please don't top post. > > On Wed, 19 Aug 2015, James Cass wrote: > >> Steve, would you be willing to share that "quick bash script"? > > There's no magic in the script, but here it is, embarrassing myself: > > cp sample-call-file /tmp/ > chmod +x /tmp/sample-call-file >
2006 Apr 07
22
Find WHERE in Rails
I''d like to find all records that have a certain integer as their "level" field in the database. I know how to find all the records: allquestions = Question.find(:all) ...and I know how to find the one record that has a certain id: allquestions = Question.find(params[:id]) ...but how do you find all the records that share a certain value in one of their fields? I tried