Package Functions #9395
Replies: 7 comments 6 replies
-
For the We want to look at the |
Beta Was this translation helpful? Give feedback.
-
Are these used in Tricot training? Should these be included in the R-Instat menu? |
Beta Was this translation helpful? Give feedback.
-
The
|
Beta Was this translation helpful? Give feedback.
-
TODO: look into |
Beta Was this translation helpful? Give feedback.
-
The purpose of the climatrends package is to bridge from the climate data to Climmob (the tricot data). In training, they typically fit four models to demonstrate how results can change depending on different factors. The idea is to emphasise that data has context (OxC), and results can vary based on model choices: a) No covariates (to show heterogeneity and how rankings change with factors). In the third model, Other functions in |
Beta Was this translation helpful? Give feedback.
-
@jkmusyoka should also be looking at the chirps package for our climatic work in general and particularly for our uptfilling work. So far, in our outfilling he has supplied the chirps (and tamsat, etc) data in a file ready to add to the station data. Maybe the chirps package can make the use of chirps easier. However, what I think this all implies for the tricot work is that they currently largely use chirps, simply as it stands. I suggest Danny's paper shows that chirps (and other satellite estimates) may not be great for the sort of indices, needed by PICSA - and I suggest they will be similar to useful indices needed by tricots? Now Emily's work proposes a locally derived adjustment to chirps, so it is more appropriate for that province or country. It is then used to outfill, but can equally be used to adjust chirps when there are no ground stations. And ground stations don't seem to be mentioned by the TRICOTS people. So, maybe they could be excited by the results of this work, that could improve the climatic indices they use. If so - and after discussions with Emily, we may keep this in reserve for a bit, but it could become a major enhancement of "our" work, and probably not part of this initial contract. |
Beta Was this translation helpful? Give feedback.
-
@lilyclements @rdstern Looking at the code, R-Instat seems to read the chirps data from the IRI website which I believe also refers to the chirps website for the estimates. Unlike chirps package, R-Instat's implementation returns a .T column for date (I believe its special date-time column thing perhaps Julian?). The Make Data dialog is then needed to create a proper date column from this .T column. So this could be an improvement we may want to make with the current implementation. |
Beta Was this translation helpful? Give feedback.
-
Introduction
This is looking at the
gosset
andPlackettLuce
R packages so far:From current investigation, there are different classes: Two types of ranking classes, and several types of models:
Things we can do with Rankings:
Creating the Object
We create a rankings object using either
rankings
,rank_numeric
, orrank_tricot(..., group = FALSE)
Describing the Object
For completeness sake of the functions in
gosset
and in thePlackettLuce
packages:Modelling the Object
Things we can do with Grouped Rankings:
Creating the Object
We create a rankings object using either
group(...)
to a rankings object, orrank_tricot(..., group = TRUE)
Describing the Object
For completeness sake of the functions in
gosset
and in thePlackettLuce
packages:Modelling the Object
Things we can do with PlackettLuce Models:
Creating the Object
Created by running
PlackettLuce(rank_obj)
to either arankings
orgrouped rankings
object.Fitting the Model / Looking at the Model
Comparing Models
Things we can do with pltrees Models:
Creating the Object
Created by running
pltree(rank_obj)
to agrouped rankings
object.Fitting the Model / Looking at the Model
Comparing Models
Beta Was this translation helpful? Give feedback.
All reactions