Displaying 9 results from an estimated 9 matches for "80101".
Did you mean:
  0101
  
2001 Aug 08
1
NLME augPred error
.../06/18
Built: R 1.3.0;  Win32;  2001-06-20 13:32:23
and
Package: nlme
Version: 3.1-16
Date: 2001/06/20
Built: R 1.3.0;  Win32;  2001-07-24 12:02:25
-- 
===============================================================
 Pedro J. Aphalo
 University of Joensuu
 Faculty of Forestry
 P.O. Box 111, FIN-80101 Joensuu, FINLAND
 mailto:pedro.aphalo at joensuu.fi
 http://cc.joensuu.fi/~aphalo/pedro.html
 fax: +358 13 251 4444
 tel: +358 13 251 4406                         ,,,^..^,,,
================================================================
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-....
2002 Jun 26
1
Bug? (PR#1710)
...05435070
8/R     1087.689  0.05435070
9/L     1093.513  0.05987474
9/R     1071.482  0.05987474
> coef(lm(pixel~day+day^2,data=Pixel))
(Intercept)         day 
1076.820678    1.341873  
- - - - - - - - - - - - -
Lauri Mehtätalo
Metsäntutkimuslaitos
Joensuun tutkimuskeskus
PL 68 (Yliopistokatu 7)
80101 JOENSUU
lauri.mehtatalo@metla.fi
p. 013-251 4110
- - - - - - - - - - - - -
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe&qu...
2018 Jan 12
0
Questions about SPECIAL-USE IMAP extension
...Personally I would love to see this implemented.
-- 
Best regards,
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Pedro Ribeiro
IPLNet, Redes de dados e comunica??es
Departamento de Sistemas de Informa??o e Comunica??es
Instituto Polit?cnico de Lisboa
Telefone: +351 210 464 701
VoIP: sip:80101 at voip.ipl.pt
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2018 Jan 12
2
Questions about SPECIAL-USE IMAP extension
On Fri Jan 12 2018 01:29:37 GMT-0500 (Eastern Standard Time), Steffen
Kaiser <skdovecot at inf.h-brs.de> wrote:
> On Thu, 11 Jan 2018, Joseph Tam wrote:
>> I'd like to configure my dovecot service to use the IMAP SPECIAL-USE
> well, in my experience SPECIAL-USE is just a suggestions to clients. Check 
> RFC 6154 for MUSTs, you'll find only few. Hence, how the client
2002 Jul 19
1
selfStart function problem
...0     18.4   13.7
3491       4    1     19.1   14.3
3492       4    2     19.5   14.3
3493       4    3     20.5   15.1
3494       6    0     16.0   13.9
3495       6    1     16.4   14.4
- - - - - - - - - - - - -
Lauri Meht?talo
Mets?ntutkimuslaitos
Joensuun tutkimuskeskus
PL 68 (Yliopistokatu 7)
80101 JOENSUU
lauri.mehtatalo at metla.fi
p. 013-251 4110
- - - - - - - - - - - - -
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe&q...
2000 Nov 03
2
aov and missing values
...me result.
The behaviour is the same in Version 1.1.1 and Version 1.2.0 Under
development (unstable) (2000-10-11). If it matters, I am using Windows.
-- 
===============================================================
 Pedro J. Aphalo
 University of Joensuu
 Faculty of Forestry
 P.O. Box 111, FIN-80101 Joensuu, FINLAND
 mailto:pedro.aphalo at joensuu.fi
 http://cc.joensuu.fi/~aphalo/pedro.html
 fax: +358 13 251 4444
 tel: +358 13 251 4406                         ,,,^..^,,,
================================================================
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-....
2000 Jul 13
1
Is this a bug?
...the command prompt. With Rterm I have not yet found
how to type in brackets with a Finnish keyboard, so the test was done by
sourcing a file.
Pedro.
-- 
===============================================================
 Pedro J. Aphalo
 University of Joensuu
 Faculty of Forestry
 P.O. Box 111, FIN-80101 Joensuu, FINLAND
 mailto:pedro.aphalo at joensuu.fi
 http://cc.joensuu.fi/~aphalo/pedro.html
 fax: +358 13 251 4444
 tel: +358 13 251 4406                         ,,,^..^,,,
================================================================
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-....
2024 Nov 29
3
Trying to get the prior value of a record from a data.frame . . . data.frame
I need to write code that will give me the previous value of from a data.frame. I have written the following code using the shift function from data.table . It does not work. I hope someone can help me correct the code.
###########################
# Try to understand shift #
###########################
if(!require(data.table)) install.packages("data.table")
library(data.table)
# Create
2024 Sep 27
7
Is there a sexy way ...?
I have (toy example):
x <- list(`1` = c(7, 13, 1, 4, 10),
          `2` = c(2, 5,  14, 8, 11),
          `3` = c(6, 9, 15, 12, 3)) 
and
f <- factor(rep(1:3,5))
I want to create a vector v of length 15 such that the entries of v,
corresponding to level l of f are the entries of x[[l]].  I.e. I want
v to equal
    c(7, 2, 6, 13, 5, 9, 1, 14, 15, 4, 8, 12, 10, 11, 3)
I can create v