similar to: Fitting this data with a gaussian would be great

Displaying 20 results from an estimated 6000 matches similar to: "Fitting this data with a gaussian would be great"

2011 Oct 20
2
Expire plugin not executing for sieve plugin?
Running dovecot 1.2.12 on ubuntu 10.10. Here is the problem: I have mysql backend for expire. I am using the dovecot-postfix package which creates /etc/dovecot/conf.d/01-mail-stack-delivery.conf which looks like this: # Some general options protocols = imap imaps managesieve disable_plaintext_auth = no ssl = yes ssl_cert_file = /etc/ssl/certs/ssl-mail.pem ssl_key_file =
2014 Sep 21
1
Bug in new behaviour for all.equal and environments?
Hi R-devel, The following code: all.equal(baseenv(), baseenv()) gives the error when run in a clean R session with latest R-devel (r66650): kevin:~$ R --vanilla --slave -e "all.equal(baseenv(), baseenv())" Error in all.equal.envRefClass(target[[i]], current[[i]], check.attributes = check.attributes, : attempt to apply non-function Calls: all.equal ...
2004 Jun 27
4
Re Cron
Hi List Is there a cron that I con do to replace this, as the fx0 card doesnt hang up properly phonegc:/home/samantha# asterisk -r Asterisk CVS-05/30/03-17:17:07, Copyright (C) 1999-2001 Linux Support Services, Inc. Written by Mark Spencer <markster@linux-support.net> ========================================================================= Connected to Asterisk CVS-05 currently running on
2005 Nov 04
1
Changes to environments in R-devel
I've just committed some changes to R-devel which affect environments. Specifically: - using NULL as an environment is now deprecated: use baseenv() instead. (baseenv() is already available in R 2.2.0, where it returns NULL. For most purposes it retains the same meaning in R-devel.) If you do use NULL, it will be converted to baseenv(), and a warning printed. For example: > f
2010 Feb 25
2
proto and baseenv()
I understand why the following happens ($.proto delegates to get, which ascends the parent hierarchy up to globalenv()), but I still find it anti-intuitive: > z <- 1 > y <- proto(a=2) > y$z [1] 1 Although this is well-documented behavior; wouldn't it uphold the principle of least surprise to inherit instead from baseenv() or emptyenv()? (See attached patch.) Spurious
2010 Mar 11
2
cluster analysis labels for dendrogram
Hi, I am clustering data based on three numeric variables. I have a fourth variable that is categorical (site) which I would like to use to label the leaves of my dendrogram, so I can see how the different sites are grouped throughout the tree, but I do NOT want to use this variable in the cluster analysis itself. Is there any way I can do this? Thanks, Samantha -- View this message in
2018 Apr 19
3
Usuario en r-help
Hola a todos, No se si a alguien m?s le sucedi? lo mismo: Al mandar una pregunta a esta lista, que amablemente me respondieron Carlos y Javier, la primer respuesta que recib? fue de una persona que no tiene nada que ver con R ni nada por el estilo. Tiene pinta de ser spam. Posteriormente recib? otro correo de otra direcci?n de email con el mismo nombre y con el subject de mi pregunta.
2010 May 09
2
Re TrixBox
Hey Guys We are replacing a BM4 with a trixbox (asterisk) virtual numbers as the customer wants to move the callcentre. They are asking for an equiv to the ipview I gather HUD may be or the panel view The problem is that we need to see (a) total calls in the queue (b) calls for specific DID - How can you give 1 DID preference to another DID ie DID 61740410001 = Fred Electrical DID
2006 Apr 11
1
eapply() fails on baseenv() (PR#8761)
eapply() works on most environments, but not on baseenv(). For example, > x <- 1 > eapply(globalenv(), function(x) x) $x [1] 1 > eapply(baseenv(), function(x) x) list() I'm probably not going to have time to work on this before 2.3.0, but I don't think it's really urgent; if no one else fixes it first I'll do it after the release. Duncan Murdoch
2011 Mar 14
0
Fitting 4 moments distribution w/ Mixture Gaussian
Hello, I know that Mclust does the fitting on its own but I am trying to implement an optimization with the aim to generate a the mixture gaussian with the combine moments as closed as possible to the moment of my return distribution. The objective is to Min Abs((Mean Ret - MeanFit)/Mean Fit) + Abs((Std Ret -Stdev Fit)/Stdev) + Abs((Sk Ret-Sk fit)/Sk Fit) + Abs((Kurt Ret- Kurt Fit)) Taking
2003 May 19
1
RE: AVM A1 (OLD) CARD
I have an old A1 ISDN card that we used to use in the mid 1990's for the delivery of data to our ISP I have seen some users have been using them, with respect to doing web searches. Can someone please let me know what drivers I require to use this card under debian and with asterix, and what the limitations are of using this card. I dont want to make calls but do inbound using it. The
2010 Jun 30
1
RE How to break pri DID to multiple SIP Trunks
Hey Guys I have an indial range of 61211118[01234]X being trunked sip to xxx.yyy.189.65 Now I want to break this down into 612111180x going to xxx.yyy.188.145 and 612111184x going to xxx.yyy.189.199 reminder being used for fax->email etc etc etc I have created the outbound routes and sip trunks I can see that all the sip trunks are up I can see the outbound routes are there and
2004 Oct 04
2
Re Problem with Asterisk 2 fx100 cards
Hi I have installed 2 fx0 cards into a machine 1 for pstn (out) and the other for pstn (in) However I can get the first card (pstnout to work fine) I have swapped the cards and both work I am also unable to make outgoign on the second card ztcfg -v shows r2d2:/etc/asterisk# ztcfg -v Zaptel Configuration ====================== 2 channels configured. My /etc/zapdata.conf file # fxsks=1,2
2018 Dec 21
2
Bug report: R.home() cause package Rcpp failed executing sourceCpp, similar bug are labeled "BUG 16660" since 2016 and here I could provide a solution that tested in my laptop.
https://bugs.r-project.org/bugzilla3/show_bug.cgi?id=16660 Here is the bug, which R.home may generate a path contains a whitespace. this will cause Rcpp failed executing sourceCpp > sourceCpp("b:/2018-12-14/src/18020/MCMC.cpp") Error in system(cmd, intern = !showOutput) : 'D:/Program' not found Error in system(cmd, ignore.stderr = TRUE, intern = TRUE) :
2012 Mar 19
1
fitting a histogram to a Gaussian curve
Hello, I am trying to fit my histogram to a smooth Gaussian curve(the data closely resembles one except a few bars). This is my code : #!/usr/bin/Rscript out_file = "irc_20M_opencl_test.png" png(out_file) scan("my.csv") -> myvals hist(myvals, breaks = 50, main = "My Distribution",xlab = "My Values") pdens <- density(myvals, na.rm=T) plot(pdens,
2004 Oct 06
3
Re 2 x100p cards H E L P (I have no hair left)
Hi Has anyone had any luck in putting two of these im a box? May I ask how.... I am starting to go bald.... I do have a suggestion is make another box and link them with iax2 Thanks Samantha r2d2:/home/s/samantha# ztcfg -vv Zaptel Configuration ====================== Channel map: Channel 01: FXS Kewlstart (Default) (Slaves: 01) Channel 02: FXS Kewlstart (Default) (Slaves: 02) 2
2010 Aug 26
1
Random slopes in lmer
Hi I want to extract the random slopes from a lmer (I am doing a random regression), but are the answers obtained from ranef or coef? My model is: mod1<-lmer(B~ A +(A|bird), family=quasibinomial) And I want to obtain a slope for each individual bird but am not sure which output I need and can't find the answer anywhere. Thanks Sam Dr Samantha Patrick EU INTERREG Post Doc Davy 618
2012 May 11
1
Replicate weights in R?
Hello everyone! I am analyzing a public use dataset which has both basic weights and replicated weights. I have found that only Stata seems to work with replicate weights but I would rather use R. Does anyone know if R can use replicate weights? If this is possible, could someone share some links and/or code for performing this action. Thank you for your time. Samantha Tornello, M.A. University
2011 Mar 11
1
dataframe to a timeseries object
I?m wondering which is the most efficient (time, than memory usage) way to obtain a multivariate time series object from a data frame (the easiest data structure to get data from a database trough RODBC). I have a starting point using timeSeries or xts library (these libraries can handle time zones), below you can find code to test. Merging parallelization (cbind) is something I?m thinking at
2020 Aug 10
1
lm() takes weights from formula environment
Thank you for your suggestion. I do know how to work around the issue. I usually build a fresh environment as a child of base-environment and then insurt the weights there. I was just trying to provide an example of the issue. emptyenv() can not be used, as it is needed for the eval (errors out even if weights are not used with "could not find function list"). For some applications