[Prévia] [Próxima] [Prévia por assunto] [Próxima por assunto]
[Índice cronológico] [Índice de assunto]

Re: Res: [ABE-L]: Fwd: [Fwd: My first R package tutorial]



Caio,
Eu achei que tinha anexado o material. Mas foi so o resumo.
Seguem anexados os arquivos.
Saudações, Clarice


> Prezada Profa. Clarice,
>
> Obrigado pela mensagem. Você sabe se terá algum material disponível
> sobre esse
> tutorial?
>
> Um cordial abraço,
>
> Caio
>
>
>
>
> ________________________________
> De: Clarice G.B. Demetrio <clarice@esalq.usp.br>
> Para: rbras@rbras.org.br; abe-l@ime.usp.br
> Cc: lbrajao@esalq.usp.br
> Enviadas: Sábado, 21 de Maio de 2011 10:43:41
> Assunto: [ABE-L]: Fwd: [Fwd: My first R package tutorial]
>
> ------- Message original --------
>
> Sujet :
>           My first R package tutorial
>
> Date :
>           Mon, 04 Apr 2011 11:28:53 +0200
>
> De :
>           Uwe Ligges <ligges@statistik.tu-dortmund.de>
> [mailto:ligges@statistik.tu-dortmund.de]
>
> Organisation :
>           Fakult�¤t Statistik, Technische Universit�¤t Dortmund
>
> Pour :
>           Uwe Ligges <ligges@statistik.tu-dortmund.de>
> [mailto:ligges@statistik.tu-dortmund.de]
>
> Dear participants of the "My first R package" tutorial at the IBS
> Channel Network conference,
>
> the tutorial is scheduled from 9:00 am to 12:30 am including a break.
> This means the amount of time we will have is rather restricted.
> Therefore, we all need to be well prepared to make the tutorial for all
> participants as successful as possible.
>
> Being well prepared means for the participants:
>
> - Please bring your fully charged laptop to the tutorial
>
> - Please download the course material (slides as PDF and example files)
>   in advance. It is available from:
>   http://www.statistik.tu-dortmund.de/~ligges/MyFirstRpackage/
> [http://www.statistik.tu-dortmund.de/~ligges/MyFirstRpackage/]
>   I still need to shorten. ;-)
>
> - Please have a recent version of R installed on your laptop,
>   i.e. R-release = R-2.12.2 should be most appropriate
>
> - Please have some tools installed:
>    + binutils and make
>    + gcc (particularly the C, C++ and Fortran part)
>    + some working TeX distribution
>    + Perl
>
> While Linux users probably have everything mentioned above installed
> already (but please check), Windows users can install all the relevant
> tools except TeX easily by downloading and installing
> http://www.murdoch-sutherland.com/Rtools/Rtools212.exe
> [http://www.murdoch-sutherland.com/Rtools/Rtools212.exe] (appropriate for
> R-2.12.x) from Duncan Murdoch's web page.
> When asked, please agree that the installers updates your PATH settings,
> so that the relevant parts are in the OS' search path already.
> If you do not have a TeX distributions installed already, please do so.
> I'd recommend the MiKTeX distribution (http://miktex.org/
> [http://miktex.org/]).
>
> If you do not manage to get it working: don't worry, we will find out
> what failed before/during/after the tutorial.
> If most participants have the prerequisites installed in advance, we can
> move a lot quicker to the more interesting parts of package building ...
>
> Course material (slides as PDF and example file) are available from
>   http://www.statistik.tu-dortmund.de/~ligges/MyFirstRpackage/
> [http://www.statistik.tu-dortmund.de/~ligges/MyFirstRpackage/]
> I still need to shorten. ;-)
>
>
> Looking forward to meeting you in Bordeaux,
> Uwe Ligges
>
>
>
> --
>
>
> C�©cile Proust-Lima
>
> Charg�©e de recherche INSERM, PhD
> [http://www.u-bordeaux2.fr/]
>
> INSERM
> U897 - ISPED
>
> Universit�© Bordeaux Segalen
>
> 146 rue L�©o Saignat 33076 Bordeaux cedex
>
> France
>
> TÃ?©l. +33 (0)557574579 ââ??ª Fax +33 (0)556240081
>
>
>
> biostat.isped.u-bordeaux2.fr/ [http://biostat.isped.u-bordeaux2.fr/]
>
> www.u-bordeaux2.fr [http://www.u-bordeaux2.fr/]
>
>
> --
> Clarice Garcia Borges Demétrio
> Departamento de Ciências Exatas
> Escola Superior de Agricultura "Luiz de Queiroz"
> Universidade de São Paulo,
> 13418-900 Piracicaba, SP
> Brasil
> phone: 55 19 34294144 R216
>
>
> Biometry, the active pursuit of biological knowledge by quantitative
> methods.â?? â?? R.A. Fisher, 1948


-- 
Clarice Garcia Borges Demétrio
Departamento de Ciências Exatas
Escola Superior de Agricultura "Luiz de Queiroz"
Universidade de São Paulo,
13418-900 Piracicaba, SP
Brasil
phone: 55 19 34294144 R216


Biometry, the active pursuit of biological knowledge by quantitative
methods.? ? R.A. Fisher, 1948

Attachment: MyFirstRpackage.pdf
Description: Adobe PDF document

Attachment: MyFirstRpackage_3x3.pdf
Description: Adobe PDF document

Attachment: Example.R
Description: Binary data

Attachment: Example.Rnw
Description: Binary data

#include <Rinternals.h>
SEXP add(SEXP a, SEXP b)
{
  int i, n;
  n = length(a);
  for(i = 0; i < n; i++) 
    REAL(a)[i] += REAL(b)[i];
  return(a);
}