You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for creating Gotcha, which has been very helpful to our research.
I have a few suggestions regarding the engineering of the tool:
Try minimize the use of system(), and instead, use R built-in functions when available.
Try use file.path() instead of something like paste0(out,"Split/") when handling paths.
These will help to improve the compatibility of Gotcha across different platforms: I found Gotcha works on Unix system, but fails to run on MacBook. Also, when running GotchaLabeling(), the python env seems not set up correctly and I must manually install missing python libraries.
Best,
The text was updated successfully, but these errors were encountered:
Hi developers,
Thanks for creating
Gotcha
, which has been very helpful to our research.I have a few suggestions regarding the engineering of the tool:
system()
, and instead, use R built-in functions when available.file.path()
instead of something likepaste0(out,"Split/")
when handling paths.These will help to improve the compatibility of
Gotcha
across different platforms: I foundGotcha
works on Unix system, but fails to run on MacBook. Also, when runningGotchaLabeling()
, the python env seems not set up correctly and I must manually install missing python libraries.Best,
The text was updated successfully, but these errors were encountered: