Last active
June 25, 2018 04:59
-
-
Save praveenn77/1c92ca338845f9a2367a33b83b698458 to your computer and use it in GitHub Desktop.
Debugging Power Bi R Custom Visual Using R studio
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #DEBUG in RStudio - Add this code to the top of script.r file | |
| # Know more at - https://medium.com/@praveenp/debugging-power-bi-r-custom-visual-using-r-studio-b1ed18d32fe5 | |
| fileRda ="D:/temp/Data.Rda" | |
| if(file.exists(dirname(fileRda))) | |
| { | |
| if(Sys.getenv("RSTUDIO")!="") | |
| load(file= fileRda) | |
| else | |
| save(list = ls(all.names = TRUE), file=fileRda) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment