Juan C Rodriguez

Results 28 issues of Juan C Rodriguez

If importing files with not absolute paths then it gets an error, this can be fixed by normalizing paths before importing. ## Before fix To reproduce: Download example csv file:...

Hi @DivadNojnarg , great package! Thanks! I need my box to update multiple times during my Shiny app execution, however, this doesn't seem to be working. Here is a reprex...

bug

1) control.Rmd : In [section 4.3](https://gvwilson.github.io/tidynomicon/control.html#how-do-i-choose-and-repeat-things) it says "Its direct translation into R is:", and the translation is not exactly the same (values). 2) tidyverse.Rmd : In [section 5.8](https://gvwilson.github.io/tidynomicon/tidyverse.html#how-do-i-write-tidy-code) it...

In [section 7.5](https://gvwilson.github.io/tidynomicon/nse.html#why-is-lazy-evaluation-useful) it does (and says): > If we try to get the value it refers to, R displays an error message: > > eval(my_expr) > > [,1] [,2]...

New RStudio addin to easily select and click emojis to add to the source pane. Useful for Rmd files! It allows adding emojis as the icon or as `'r emo::ji(...)'`....

These are valid R expressions, they are parsed differently, and not being well-handled by rco. ```r `sum1`

bug
hacktoberfest

When trying to optimize `jagsTwoBaselinesFull.R` file from the `tRophicPosition` package, I noticed that `utils::getParseData` truncates long strings to a string like `"[2001 chars quoted with '\"']"`. This bug is related...

bug
hacktoberfest

If within a function, a variable is assigned multiple times, but just the last assignation is read, then the optimizer could keep just the last one. For example: ```r foo

enhancement

The optimizer is currently eliminating any dead expression, however, the code: ```r foo

enhancement

Since determining the conditional that causes a `repeat` loop to stop is not that simple, it is not easy to remove invariant variables and place them in an `if`. For...

enhancement