fingertipsR
fingertipsR copied to clipboard
R package to interact with Public Health England’s Fingertips data tool
I'm trying to get some of basic functionality of FingertipsR to work e.g. fingertips_stats() But getting this error Error: lexical error: invalid char in json text. Trend Micro (right here)...
Need the ability to insert already extracted data.frame so the extract process isn't run twice
In `fingertips_data` - when AreaCode is specified but includes the area code of a parent area (which should exist in the dataset), it causes an error because parent area codes...
A function that predicts the next year value of an indicator. **predict_indicator():** * IndicatorID * R asks for area type for prediction (eg, UTLA), then: * Extracts all indicator data...
Bit of fun - a word cloud of fingertips metadata ` ftips_cloud % mutate(text = str_c(indicator_full_name, definition)) wc % unnest_tokens(bigram, text, token = "ngrams", n = 2) %>% count(bigram, sort...
A function to create a data table of live indicators - which profile and what geography ` indicator_List% left_join(area_types()) %>% group_by(IndicatorID) %>% select(IndicatorID, AreaTypeName) %>% arrange(IndicatorID) %>% left_join(indicators()) %>% select(IndicatorID,...
Make shading of rows more pronounced when selected
Can it be possible to remove a selected indicator by selecting it in the left hand table?
The only way I seem to be able to successfully retrieve the England data for indicator 90409, and others like it, seems to be to specify 'AreaTypeID = 153' -...