search for: perfrom

Displaying 20 results from an estimated 63 matches for "perfrom".

Did you mean: perform
2006 Oct 15
0
problems perfroming the vuong test
Dear All, I am using the function vuong of the package pscl to compare 2 non nested glm models with a numeric response. I did the following m1<-glm(y ~x ,data=xxx) m2<-glm(y ~z , data=xxx) When calling the vuong function I get the following message: > vuong(m1,m2) Error in predprob.glm(m1) : your object of class glm is unsupported by predprob.glmyour object of class lm is unsupported
2004 Dec 14
0
socket options and perfromance tuning
I'm trying to do some performance tuning on my company samba server. Currently users are getting timeout errors when trying to download large files <4GB. I was looking into performance tuning and socket options looked like a good candidate. In the Official Samba-3 HOWTO and Reference Guide it says, "It is strongly recommended that before specifying any setting for socket options the
2004 Jan 05
4
r: lm question
Hi all this is a silly question since i should know the answer. lm(y~x) perfroms linear regression with the intercept included. How do i estimate the equation without the intercept? cheers
2014 Jun 27
2
Fixed first cast-align warning
...gers. This was replaced with a single union containing all the requred array. This solution means that there are fewer pointer casts and actually gives the compiler more information with which to generate fast code. There has been at least one person on this list who is able to do perfromance tests on FLAC. I would appreciate it if someone could run such a performance test before and after the above commit. Cheers, Erik -- ---------------------------------------------------------------------- Erik de Castro Lopo http://www.mega-nerd.com/
2016 Jun 06
1
[PATCH] v2v:windows: prevent Parallels drivers from loading at boot
...rted since early P6 family, the drivers didn't even bother to check for the presence of the corresponding feature in CPUID. In QEMU/KVM, however, this instruction triggers #GP unless the VM is run with PMU (performance monitoring unit) enabled, which is often not the case (due to its impact on perfromance and migratability). So, to prevent crashes upon conversion, stop respective drivers from loading by disabling the corresponding services. Note that the services are being disabled ("Start" value set to 4) rather than their node removed, to avoid confusing the uninstaller which is sc...
2003 Nov 08
2
help with hierarchical clustering
...a large excel file with data in it. I converted it to a 'csv' format. I imported this dataset to R using the follownig command mldata <- read.csv("c:\\temp\\mldata.csv", header=T) all the column names and the rows seems to be correct. Now that I have this object, I need to perfrom hclust. I used the following hc <- hclust(dist(mldata), method="single") I get the following error > hc <- hclust(dist(mldata),"ave") Error: cannot allocate vector of size 622668 Kb In addition: Warning messages: 1: NAs introduced by coercion 2: Reached total al...
2011 Jan 26
5
Regarding error in Asterisk dail plan:
Hi all, i am doing my master thesis on server perfromance evaluation i am using asterisk as sip proxy server and sipp tool as traffic generator... i have run basic testing of asterisk like as shown in website http://sipp.sourceforge.net/wiki/index.php/Howto_test_an_Asterisk_server_using_SIPp when i have copied sip.conf and extensions.conf from the...
2005 Feb 10
2
Configuring Asterisk
Hey list, I'm having problems to get running *. I don't have any digium hardware yet. I just want to perfrom some tests using SIP. I compiled asterisk and zaptel with ztdummy enabled on Fedora Core 3. When I try to start ztdummy I get the following message: localhost# modprobe ztdummy Notice: Configuration file is /etc/zaptel.conf line0: Unable to open master device /dev/zap/ctl 1 error(s) detected FAT...
2010 Aug 19
1
meta-analysis in R
Dear Sir or Madam, I am trying to explore the citation bias by perfroming meta-analysis. I need to plot a forest plot on some other proportions other than the usual effect size OR,RR, RD. I still do not have any idea after searching google and reading relevant books. Can anyone kindly help? Thank you in advance. Best wishes weiwei [[alternati...
2011 Jan 25
1
Paired data survival analysis
...cts were exposed to both treatments, and i gave them 60 minutes to perform a certain behaviour. 3 of my subjects performed the behaviour in one treatment but not the other. Therefore, i need to do a survival analysis using paired data. Im little confused about how to go about this in R. Im able to perfrom a normal surival analyses not taking the paired data into account, but im just wondering if there is some way to take the pairing into account. I know there are 3 different ways to deal with grouping in the survival package, strata, cluster and frailty but i struggle to understand the meaning of th...
2013 Jul 01
2
syslinux6 EFI fail to boot via pxe
...urce Technology Center > Hi Matt, I tried to test the 6.01-pre5 version, but after loading from ldlinux.e64 nothing happen in the trace. If I test the efi32 in VMWare it comes up with a 'Firmware error' and close the VMWare. It seems that syslinux.efi from pre5 is broken I now would perfrom the tests with pre4
2018 Mar 22
1
Opus configuration for ARM cortex M7
Hi, I'm planning to use Opus codec on a ARM cortex M7 device running at 400MHz. Con you please suggest the best configuration directives that I have to set in the config.h file in order to obtain the best perfromances on the cortex M7 architecture? Actually I have compiled libopus 1.2.1 with the following cnfiguration parameters: #define VAR_ARRAYS  1 #define FIXED_POINT  1 #define OPUS_BUILD  1 #define OPUS_ARM_INLINE_EDSP  1 Con I define something else to further improve the performances? Thank you in...
2016 Sep 08
2
CentOS 6.8 and samba
...pdates to -25, -30, -35. With trial and error, I settled on -33 as last working version. > 5. You probably already know this but Samba 3.6.x is ancient. Have you considered running Samba 4.x? Centos 6 repos have Samba 4.2.10 packages. Samba 4.x is an intimidating piece of software. If it can perfrom the same function and use the same config, I'm willing to try it. > 6. Have you checked for corrupted Samba *.tbd files? Consider running tdbbackup: > https://www.samba.org/samba/docs/man/manpages-3/tdbbackup.8.html See 4. .tdb files look ok and tdbbackup gives no errors.
2011 Oct 09
1
help with using last observation carried forward analysis for a clinical trial please
...not completed or the visit is missing, the data point does not exist. To explain, I created a table as analogy. My goal is to take something that looks like the following: ID Visit score 1 1 10 2 1 12 2 3 15 3 1 1 3 2 6 4 1 16 4 2 1 4 3 7 4 4 17 I think I then need to change to this in order to perfrom locf in zoo: ID Visit score 1 1 10 1 2 na 1 3 na 1 4 na 2 1 12 2 2 na 2 3 15 2 4 na 3 1 1 3 2 6 3 3 na 3 4 na 4 1 16 4 2 1 4 3 7 4 4 17 then change to: ID Visit score 1 1 10 1 2 10 1 3 10 1 4 10 2 1 12 2 2 12 2 3 15 2 4 15 3 1 1 3 2 6 3 3 6 3 4 6 4 1 16 4 2 1 4 3 7 4 4 17 I would then like to tak...
2018 Feb 16
4
New LLD performance builder
>Hello everyone, > >I have added a new public LLD performance builder at >http://lab.llvm.org:8011/builders/lld-perf-testsuite. >It builds LLVM and LLD by the latest releaed Clang and runs a set of >perfromance tests. > >The builder is reliable. Please pay attention on the failures. > >The performance statistics are here: >http://lnt.llvm.org/db_default/v4/link/recent_activity > >Thanks > >Galina Great news, thanks ! Looking on results I am not sure how to explain them tho...
2007 Jul 27
1
smbclient and netbios disabled question
...without problem with those parameters on MATISSE: [global] workgroup = LINUXVIRT security = DOMAIN passdb backend = tdbsam smb ports = 445 disable netbios = no name resolve order = lmhosts host wins bcast wins server = 192.168.140.22 when I perfrom a smbclient it seems to work : [root@matisse ~]# smbclient -L matisse -W linuxvirt -U root%install Domain=[LINUXVIRT] OS=[Unix] Server=[Samba 3.0.25b-2.fc7] Sharename Type Comment --------- ---- ------- public Disk Public Stuff I...
2018 Aug 06
4
[RFC 0/4] Virtio uses DMA API for all devices
On Mon, 2018-08-06 at 23:35 +0300, Michael S. Tsirkin wrote: > > As I said replying to Christoph, we are "leaking" into the interface > > something here that is really what's the VM is doing to itself, which > > is to stash its memory away in an inaccessible place. > > > > Cheers, > > Ben. > > I think Christoph merely objects to the
2018 Aug 06
4
[RFC 0/4] Virtio uses DMA API for all devices
On Mon, 2018-08-06 at 23:35 +0300, Michael S. Tsirkin wrote: > > As I said replying to Christoph, we are "leaking" into the interface > > something here that is really what's the VM is doing to itself, which > > is to stash its memory away in an inaccessible place. > > > > Cheers, > > Ben. > > I think Christoph merely objects to the
2011 Aug 15
2
Extracting information from lm results (multiple model runs)
...gt; Y=c(15,14,23,18,19,9,19,13) > > X1=c(0.2,0.6,0.45,0.27,0.6,0.14,0.1,0.52) > > X2a=c(17,22,21,18,19,25,8,19) > > X2b=c(22,22,29,34,19,26,17,22) > > X2 <- function()runif(length(X2a), X2a, X2b) > > > > #create empty list > > mod <- list() > > #perfrom n-model runs for lm > > for(i in 1:10) { > > mod[[paste("run",i,sep="")]] <- lm(Y~X1+X2()) > > } > > > > #define coeficients and how to extract them from lm > > All_Model_runs <- function(lm){ > > out <- c(l...
2008 Aug 18
15
How to upgrade domU
How do i upgrade my Xen guest (domu1) ? On a stand alone hardware one would insert DVD/CD/Network and perform the upgrade, What is the equivalent in Xen World ? Tahnks !!! -- Regards, mantra - Instrument of Thought _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users