DistanceDevelopment / readdst

Convert Distance for Windows projects into R code/data
GNU General Public License v3.0
1 stars 2 forks source link

get_data() doesn't seem to be accessible from the console #11

Closed fsdias closed 8 years ago

fsdias commented 8 years ago

Running: get_data("/media/fd/Dados/FilipeTrabalho/MonkeyBusiness/RondeHill/DISTANCE/StandingNestsIndividual/DistData.mdb")

Returns:

Error: could not find function "get_data"

(readdst is loaded of course)

dill commented 8 years ago

The get_data() function is used by readdst internally and is not intended for general use (you can access is by using readdst:::get_data() but I don't recommend that. The $env$obs_table element of the model specification objects returned by convert_project() will give the table that you want to feed to ds() or ddf(), that will be after the chosen data filters (e.g. subset by species or strata) have been applied.

HTH

On 06/11/2015 11:28, fsdias wrote:

Running: get_data("/media/fd/Dados/FilipeTrabalho/MonkeyBusiness/RondeHill/DISTANCE/StandingNestsIndividual/DistData.mdb")

Returns:

Error: could not find function "get_data"

(readdst is loaded of course)

— Reply to this email directly or view it on GitHub https://github.com/dill/readdst/issues/11.

fsdias commented 8 years ago

Ok. I think it would be useful to have an equivalent function available for general use. I'll open a separate issue.