George Moroz

Results 12 comments of George Moroz

Same here... ``` > cr_cn(dois = "10.1371/journal.pone.0112608", format = "text", style = "apa") Error in cr_GET(endpoint = sprintf("works/%s/agency", x), args = list(), : res$response_headers$`content-type` == "application/json;charset=UTF-8" is not TRUE ```...

I had the same problem, but I think I figured something out. [Here](https://gist.github.com/agricolamz/1761f3b3a18d5bc5afba7fe392bcf1e1) is an .Rmd that works for me. I hope it helps. ![image](https://user-images.githubusercontent.com/15956515/71771527-7f1fd000-2f4d-11ea-958c-29c5d86407b4.png)

I've spent half an hour for figuring out that it was spaces, not the uppercase categories...

Wow, spaces were my issue! I am lucky that I get here by accident. Is it possible to make it working with any amount of spaces around the `=`?

Thank you, @ottlngr!

I think there is a problem with hex codes ``` library(lingtypology) df % mutate(letters = str_extract(grid_coordinates, "\\w"), digits = str_extract(grid_coordinates, "\\d{1,2}")) %>% mutate(digits = as.double(digits), letters = factor(letters, levels =...

The `bib`-files are plain texts, so you can do with it whatever you want. If I were you, I'd do something like this: ``` library(tidyverse) read_lines("your_bib_file.bib") |> str_replace_all("=", " =...

Dear Robert, thank you for your comments. I've seen them long time ago, but didn't have mental sources to work...