Lise Vaudor

Results 19 issues of Lise Vaudor

Hello Mike, Thanks for this great package! I have been using it quite extensively lately (to characterize >12 000 user timelines) and cannot wait for your detailed description of it...

Hi Colin, I'm using tidytext for tokenization, but have some problems with texts in French. For instance "L'achat" or "j'ai" are not separated as they should be. In [an issue...

For instance: ``` country_id="wd:Q148" result=spq_init() %>% spq_set(country=country_id) %>% spq_add("?country wdt:P37 ?language_official") %>% spq_add("?language_official wdt:P424 ?language_official_code") %>% spq_label(country,language_official, .overwrite=TRUE) %>% spq_perform(replace_prefixes=TRUE) ``` result has 0 rows whereas the same query, without...

When working on "combined queries" I often need to replace URIs with their abbreviated versions for use in spq_set(). For instance, I run a first query that returns a list...

I think the way we're supposed to add property qualifiers is not intuitive. Indeed, we're supposed to put it that way: ``` stations_metro_Lyon=spq_init() %>% spq_add("?station wdt:P16 wd:Q1552") %>% # ?station...

Hi, For sequins I have been working on a get_label() function: ``` #' This function takes a component of a triple pattern as input and returns (if it exists) a...

Hi, Maybe we should allow the use of blank nodes e.g. spq_add("?value obo:IAO_0000039 [rdfs:label ?unit]", .required=FALSE) (I'll put a Wikidata-based example below soon I promise ;-) ). Maybe it would...

documentation
design :brain:

Hi! As a tribute to your work (@maelle) on going full DSL-mode I wanted to include an example in the RR2023 talk and (as I still kind of struggle with...

Hi, I'm not sure it's an "Issue" but I would like to have your input on that @maelle. I'm working on package sequins and doing so I'm trying to get...

Let's say I have a list of plants plants=c("wd:Q15537225","wd:Q109995","wd:Q148097","wd:Q159748") I would like to apply the following function (which returns the plants' vernacular names and associated languages) to these Wikidata IDs:...

documentation