search for: bapst

Displaying 5 results from an estimated 5 matches for "bapst".

Did you mean: apst
2012 Apr 17
2
Error with Rcmd check library --as-cran
...ion halted My package depends on ape, but not Matrix. Matrix is installed, though, on my workstation, as are the other ape dependencies. The check works fine by default and with the --timings option. What is different about --as-cran that makes it unable to find Matrix? Thanks for the help, -Dave Bapst, UChicago -- David Bapst Dept of Geophysical Sciences University of Chicago 5734 S. Ellis Chicago, IL 60637 http://home.uchicago.edu/~dwbapst/ http://cran.r-project.org/web/packages/paleotree/index.html <http://home.uchicago.edu/%7Edwbapst/> [[alternative HTML version deleted]]
2010 Dec 22
2
Fitting a Triangular Distribution to Bivariate Data
...tely. Is there anyway to fit a triangular or 'tent' function to my data in R? Some sample code would be appreciated; I'm not new to R, but I sometimes have difficulty understanding the model-fitting functions (finally figured out how to extrapolate with predict() today!) Thanks! -Dave Bapst, UChicago
2010 Mar 11
3
Help Files Now Load in the Internet Browser?
...function, but it was in MASS, so I'll just open a help file for a different function in MASS..."). I looked in the updates list and read that the help files had been converted. Is there still any way to get the help files to load again in the windows html help with the topics list? -Dave Bapst, UChicago
2010 Oct 03
1
Modifying a data.frame
Hello list members I have a problem with modifying a data.frame. As an example given is a data.frame called ex : ex<-data.frame(id=c(1,2,3,4,5,6),obs=c(14,9,20,36,55,47),eff=c("A","A","B","C","C","C")) After that I would like to modify the object ex with the following short script: for (i in ex) { if(ex[i,3]=="A"||
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.