search for: remmel

Displaying 6 results from an estimated 6 matches for "remmel".

Did you mean: remel
2006 Feb 09
1
Shapefiles
...les and ellipses are do not return a coordinate list during the plotting sequence (e.g., all I need supply are the lengths of axes and rotation angle), is there an easy way by which the plot window can be converted to a shapefile? Thank you, Tarmo __________________________________________ Tarmo Remmel Ph.D. GUESS Lab, Department of Geography University of Toronto at Mississauga Mississauga, Ontario, L5L 1C6 Tel: 905-569-4382 Lab: 905-828-3868 Fax: 905-828-5273 Skype: tarmoremmel http://eratos.erin.utoronto.ca/remmelt
2005 May 30
1
Unique arrangements of a vector
.... Is there some mathematically elegant method for doing this? I'd hope to have initial vectors significantly longer than the demonstrated 4 values (e.g., thousands). Any help is appreciated and I will gladly SUM afterwards. Thank you, Tarmo __________________________________________ Tarmo Remmel Ph.D. GUESS Lab, Department of Geography University of Toronto at Mississauga Mississauga, Ontario, L5L 1C6 Tel: 905-828-3868 Fax: 905-828-5273 Skype: tarmoremmel http://eratos.erin.utoronto.ca/remmelt
2011 Sep 20
1
Boxplots from 4 dimensional array
...there a simple way to do this? I have been playing with boxplot() and apply() but am getting some dimensions mixed up and thought that this would be a good time to seek some help. Any help with this would be greatly appreciated. Thank you, Tarmo _____________________________________ Tarmo K Remmel PhD Associate Professor, Department of Geography York University, N413A Ross Building 4700 Keele Street, Toronto, Ontario, M3J 1P3 Tel: 416-736-2100 x22496, Fax: 416-736-5988 Skype: tarmoremmel
2006 May 25
1
Building Libraries
...ring properly with: R CMD Rd2txt myfun.Rd and R CMD Rdconv -t=html -o=myfun.html myfun.Rd However, when I call the check command (on a unix machine), I get the following: ~/RWork > R CMD check aspace * checking for working latex ...sh: latex: not found NO * using log directory '/students/remmelt/RWork/aspace.Rcheck' * using R version 2.2.0, 2005-10-06 * checking for file 'aspace/DESCRIPTION' ... OK * checking extension type ... Package * this is package 'aspace' version '0.0' * checking if this is a source package ... OK * Installing *source* package 'aspa...
2005 Jan 04
4
Re : Frequency count
Dear list, I have a dataset as follow and I would like to count the frequencies for the combination of the two variables (f1 and f2) for each id. I know it is should be straight forward, but I just don't know how to do it in R. Here is the SAS code I will use to get the output I want : proc means nway; class id f1 f2; var flag output out=temp; Dataset: id f1 f2 flag 798 1 2
2005 Jan 07
6
coercing columns
Dear all, I have a data frame that looks like this: c1 c2 c3 A B C B C A A A B and so on; I?d like to produce one single vector consisting of the columns c1,c2, c3, such that vector=("A","B","A","B","C","A","C","A","B") I guess it?s easy to do but I don?t know how...Can anyone