search for: appropri

Displaying 20 results from an estimated 23118 matches for "appropri".

2013 Oct 11
0
Wine release 1.7.4
...ons. kernel32/tests: Fix compilation on systems that don't support nameless unions. mshtml/tests: Fix compilation on systems that don't support nameless unions. mscoree/tests: Make test_createinstance() static. Fr?d?ric Delanoy (53): winemac.drv: Use BOOL type where appropriate. wmc: Use BOOL type where appropriate. wrc: Use BOOL type where appropriate. rpcrt4: Use BOOL type where appropriate. msxml3: Use BOOL type where appropriate. shell32: Use BOOL type where appropriate. propsys: Use BOOL type where appropriate. wldap32: Us...
2012 Sep 25
1
appropriate test in glm when the family is Gamma
Dear R users, Which test is most appropriate in glm when the family is Gamma? In the help page of anova.glm, I found the following ?For models with known dispersion (e.g., binomial and Poisson fits) the chi-squared test is most appropriate, and for those with dispersion estimated by moments (e.g., gaussian, quasibinomial and quasipoiss...
2013 Oct 25
0
Wine release 1.7.5
...write flag to the serial device. Fran?ois Gouget (3): ntdll/tests: Fix compilation on systems that don't support nameless unions. oleaut32/tests: Make the uk_*() methods static. crypt32: Make add_cert_to_store() static. Fr?d?ric Delanoy (37): gdi32: Use BOOL type where appropriate. uxtheme: Use BOOL type where appropriate. winedbg: Use BOOL type where appropriate. winmm/tests: Use BOOL type where appropriate. winetest: Use BOOL type where appropriate. winepath: Use BOOL type where appropriate. wined3d: Avoid initializing some variables....
2013 Nov 08
0
Wine release 1.7.6
...e CopyTo method for file sizes not multiple of the internal buffer size, on SHCreateStreamOnFileEx-returned IStreams. Dmitry Timoshkov (25): kernel32/tests: Update trace message to report actually used timeout value. atl100: Drop file attribute when opening an existing file and specify appropriate sharing mode. atl100: ReadFile doesn't directly return an error code. cryptnet: Avoid preliminary blob size initialization. atl100: Print file name in the failure message and fix a typo. kernel32/tests: Add tests for GetLongPathName/GetShortPathName and relative paths...
2013 Nov 22
0
Wine release 1.7.7
...ms that don't support nameless unions. netapi32: Remove WINAPI on static functions where not needed. wined3d: Make wined3d_device_create_cursor_texture() static. po: Remove an extraneous full stop in an error message. Fr?d?ric Delanoy (31): comctl32: Use BOOL type where appropriate. winedbg: Use BOOL type where appropriate. winegstreamer: Use boolean type where appropriate. dbghelp: Use BOOL type where appropriate. mmdevapi: Use BOOL type where appropriate. mscms: Use BOOL type where appropriate. shell32: Use BOOL type where appropriate....
2013 Dec 06
0
Wine release 1.7.8
...anslation. Alexandre Julliard (11): configure: Add a rule to prevent rebuilding makedep when tools are disabled. makefiles: Only output tools directory dependencies when tools are enabled. makefiles: Don't make binaries depend on Makefile.in. msvcp71: Use thiscall where appropriate in the header file. msvcp90: Use thiscall where appropriate in the header file. msxml3/tests: Avoid including xmldom.h. makefiles: Make sure config.h is updated before building anything. configure: Update FreeType configure checks for the changed headers location. m...
2012 Jan 02
1
Is using glht with "Tukey" for lme post-hoc comparisons an appropriate substitute to TukeyHSD?
Hello, I am trying to determine the most appropriate way to run post-hoc comparisons on my lme model. I had originally planned to use Tukey HSD method as I am interested in all possible comparisons between my treatment levels. TukeyHSD, however, does not work with lme. The only other code that I was able to find, and which also seems to...
2009 Nov 18
1
How to choose appropriate linear model? (ANOVA)
I'm wondering how to choose an appropriate linear model for a given problem. I have been reading Applied Linear Regression Models by John Neter, Michael H Kutner, William Wasserman and Christopher J. Nachtsheim. I'm still not clear how to choose an appropriate linear model. For multi-factor ANOVA, shall I start with all the interact...
2003 Mar 12
2
[OT] Appropriate test?
...and I don't really know how to analyse it. I have 20 subjects in two groups of treatment (8 an 12 subjects). Biological measure have been recorded at different time, from t0 (before the treatment) to t7 (3 days after). The time elapsed between each measure is not constant. What is the most appropriate test to show a difference between the 2 treatements? I thought that an anova for repeated measure could do the trick, but I didn't really find how to do it with R. I sorry for being OT but I didn't really know where to ask this question. If you could redirect me on a appropriate for...
2004 Jan 14
2
Binomial glms with very small numbers
V&R describes binomial GLMs with mortality out of 20 budworms. Is it appropriate to use the same approach with mortality out of numbers as low as 3? I feel reticent to do so with data that is not very continuous. There are one continuous and one categorical independent variables. Would it be more appropriate to treat the response as an ordered factor with four levels? If...
2018 Jan 18
8
reading lisp file in R
...-learning-databases/university/university.data I would like to read it into R. Any suggestions? Thanks very much in advance for pointers on this and best wishes, Ranjan -- Important Notice: This mailbox is ignored: e-mails are set to be deleted on receipt. Please respond to the mailing list if appropriate. For those needing to send personal or professional e-mail, please use appropriate addresses.
2014 Nov 07
2
suggestion on appropriate source client
Hi everyone, i would like to have some suggestion about the most appropriate source client to use in conjunction with IceCast2 given few requirements: 1) the client should be able to handle multiple streams simultaneously and thus multiple resource folders (for music files). 2) the client should be able to be programmatically manipulated (scripting or API) and can thus...
2001 Jun 08
1
binom.test appropriate?
Hi there, as part of a 2 x 2 contingency table analysis I would like to estimate conditional probabilities (success rates) in a Bernoulli experiment. In particular I want to test a null hypothesis p <= p0 versus the alternative hypothesis p > p0. As far as I understand the subject, there are UMPU tests for these types of hypotheses. Now I know about R's "binom.test" but the
2011 Sep 20
5
help in interpreting paired t-test
...**************************************************************************** plot(A,B) abline(0,1) At a glance, the data look very similar. Data A and B are two measurements of the same variable but using different devices (on a same set of subjects). Thus, I thought that a paired t-test could be appropriate to check if the diff between measurement devices = 0. t.test(A-B) ************************************************************************************ One Sample t-test data: A - B t = 7.6276, df = 178, p-value = 1.387e-12 alternative hypothesis: true mean is not equal to 0 95 percent confi...
2013 Nov 03
3
[LLVMdev] Appropriate DS for implementing worklist
...s which requires creating worklist of basic blocks. The worklist should be in FIFO order. I checked SmallVector (and similar others) and found out this is working in LIFO order when I use the functions push_back and pop_back_val to insert and delete elements in the worklist. Can someone suggest an appropriate DS to implement my worklist. Note: I am not concerned about efficiency here. -- Regards, Rekha -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131103/ca057e61/attachment.html>
2012 Sep 09
4
[PATCH] virtio-spec: serial: english tweak
...06,7 @@ If the VIRTIO_CONSOLE_F_MULTIPORT feature is negotiated, the driver can spawn multiple ports, not all of which may be attached to a console. Some could be generic ports. In this case, the control virtqueues are enabled and according to the max_nr_po -rts configuration-space value, the appropriate number of virtqueues are +rts configuration-space value, an appropriate number of virtqueues are created. A control message indicating the driver is ready is sent to the host. The host can then send control messages for adding new ports to the device. -- MST
2012 Sep 09
4
[PATCH] virtio-spec: serial: english tweak
...06,7 @@ If the VIRTIO_CONSOLE_F_MULTIPORT feature is negotiated, the driver can spawn multiple ports, not all of which may be attached to a console. Some could be generic ports. In this case, the control virtqueues are enabled and according to the max_nr_po -rts configuration-space value, the appropriate number of virtqueues are +rts configuration-space value, an appropriate number of virtqueues are created. A control message indicating the driver is ready is sent to the host. The host can then send control messages for adding new ports to the device. -- MST
2006 Apr 26
3
Were to find appropriate functions for a given task in R
This is a generic request concerning were to look for finding appropriate information on a precise procedure in R. I’m using R for teaching introductory statistics and my students are learning how to deal with it. However, I find it difficult to locate some of the procedures. For instance, for basic crosstabulation, it is obvious that basic functions as table, ftable,...
2007 Jun 22
1
Implicit storage tiering w/ ZFS
...ic rating or otherwise, with the idea that the fastest disks get a "1" and the slowest get a "9" (or whatever the largest number of supported tiers would be) b) leveraging the copy-on-write nature of ZFS, when data is modified, the new copy would be sent to the devices that were appropriate given statistical information regarding that data''s access/modification frequency. Not being familiar with ZFS internals, I don''t know if there would be a way of taking advantage of the ARC knowledge of access frequency. c) It seems to me there would need to be some trawling o...
2013 Oct 25
1
appropriate work-around for problems with a specific plot device (Rstudio)?
...hen done: externalDevice<-FALSE if (!is.function(options()$device)){ if (names(dev.cur())=="RStudioGD"){ message("RStudio's graphics device is not well supported by ndtv, attempting to open another type of plot window") # try to open a new platform-appropriate plot window if (.Platform$OS.type=='windows'){ windows() } else if(length(grep(R.version$platform,pattern='apple'))>0) # is it mac? { quartz() } else { # must be unix x11() } externalDevice<-TRUE }...