search for: individua

Displaying 8 results from an estimated 8 matches for "individua".

Did you mean: individual
2005 Nov 08
0
Reducing the deleterious effects of ego relatedissues on the list: growing up individua
...On Mon, 2005-11-07 at 15:03 -0800, Bryan J. Smith wrote: > No sense in responding further. I think I've made my point. ******************************************************************* This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This footnote also confirms that this email message has been swept for the presence of computer viruses. www.hubbell.com - Hubbell Incorporated
2007 Apr 06
0
translating sas proc mixed to lme()
...All I am trying to translate a proc mixed into a lme() syntax. It seems that I was able to do it for part of the model, but a few things are still different. It is a 2-level bivariate model (some call it a pseudo-3-level model). PROC MIXED DATA=psdata.bivar COVTEST METHOD = ml; CLASS cluster_ID individual_id variable_id ; MODEL y = Dp Dq / SOLUTION NOINT; RANDOM Dp Dq / SUBJECT = cluster_ID TYPE=UN G GCORR; REPEATED variable_id / SUBJECT = individual_ID(cluster_ID) TYPE=UN R RCORR; RUN; Here is my try: dta = sqlQuery(odbcConnect("sasodbc", believeNRows=FALSE), "select * from psdat...
2008 May 28
2
rmeta package: metaplot or forestplot of meta-analysis under DSL (ramdon) model
...a default function for MH (fixed-effect) model. Has the rmeta package been updated for such a function? Or someone revised it and kept a private code? I would appreciate it if you could provide some information on this question. Thanks, Andrew This email is intended only for the use of the individua...{{dropped:12}}
2000 Mar 07
3
Merging data.frames
...9;t see a merge command in R. What is the best way to >accomplish >this? The easiest way to to this, I think, is as follows: if you have several data frames, dataframe1, dataframe2, . . . , dataframen, you can merger them all into one dataframe by using the data.frame command again with the individuaal data.frames as arguments: data.frame(dataframe1, dataframe2, . . . , dataframen) here's a quick example: > a1_c(1, 1, 1) > a2_c(2, 2, 2) > b1_c(3, 3, 3) > b2_c(4, 4, 4) > adf_data.frame(a1,a2) > bdf_data.frame(b1,b2) > adf+bdf a1 a2 1 4 6 2 4 6 3 4 6 > dat...
2008 Aug 21
0
how to use chisq.test with 2 row matrix having 0 in it?
...: elements X-squared = NaN, df = 2, p-value = NA Warning message: Chi-squared approximation may be incorrect in: chisq.test(elements) ==================== Would anyone help me to figure out how to do it even there are 0s? Thanks a lot!! Becky This email is intended only for the use of the individua...{{dropped:12}}
2005 Jul 18
9
Polycom IP600 - Worth the extra $$
Hello, I am looking at the Polycom phones. The ip600 has a very nice screen, is that the only real advantage over the ip500 and ip300.. Is it worth the extra dollars? Kind regards Michael Felder IT Medic Australia Pty. Ltd. P: 03 9557 2213 F: 03 9557 2214 M: 0419 568 217 E: Michael@ITMedic.com.au <blocked::mailto:Michael@ITMedic.com.au> http://www.ITMedic.com.au
2008 Aug 22
2
help needed for HWE.exact in library "genetics"
...t;G/G" "G/G" "G/G" "G/G" "G/G" Alleles: G A > HWE.exact(g2) Exact Test for Hardy-Weinberg Equilibrium data: g2 N11 = 168, N12 = 5, N22 = 0, N1 = 341, N2 = 5, p-value = 1 ============ Becky This email is intended only for the use of the individua...{{dropped:12}}
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame. For instance > ddTable <- data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry")) I want a dataset that is Id Name 1 Paul 2 Bob > unique(ddTable) Will give me all 4 rows, and > unique(ddTable$Id) Will give me c(1,2), but not accompanied by the name column.