search for: e2d

Displaying 4 results from an estimated 4 matches for "e2d".

Did you mean: 2d
2008 Jun 06
1
How to force two regression coefficients to be equal but opposite in sign?
...-0.23571 0.95738 -0.246 0.815 E1C -0.57057 1.20490 -0.474 0.656 E1D -0.22988 0.98274 -0.234 0.824 E1E -1.17181 1.02918 -1.139 0.306 E2B -0.16775 0.87803 -0.191 0.856 E2C 0.05952 1.12779 0.053 0.960 E2D 0.43077 1.19485 0.361 0.733 E2E 0.40633 0.98289 0.413 0.696 --- Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 Residual standard error: 1.004 on 5 degrees of freedom Multiple R-squared: 0.7622,...
2014 Oct 23
0
Puppet agent message: Could not retrieve local facts: Could not find fact 'define_fact'
...ause you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscribe@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/8356462c-e2de-42b9-bb51-d57a0f9c6590%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
2008 Jun 09
1
Systemfit (was RE: How to force two regression coefficients to be equal but opposite in sign?)
...> E1C -0.57057 1.20490 -0.474 0.656 > > E1D -0.22988 0.98274 -0.234 0.824 > > E1E -1.17181 1.02918 -1.139 0.306 > > E2B -0.16775 0.87803 -0.191 0.856 > > E2C 0.05952 1.12779 0.053 0.960 > > E2D 0.43077 1.19485 0.361 0.733 > > E2E 0.40633 0.98289 0.413 0.696 > > > > --- > > > > Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 > > Residual standard error: 1.004 on 5 de...
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.