Last active
January 10, 2017 18:49
-
-
Save joethorley/316a27e62bd371b8311f47080af2a7c6 to your computer and use it in GitHub Desktop.
Revisions
-
joethorley revised this gist
Jan 10, 2017 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,8 @@ dprint <- function(x, note = NULL, do = getOption("dprint.do", TRUE)) { if (!do) return(invisible()) if (!is.null(note)) cat("\n**", note, "**\n") cat("\n", deparse(substitute(x)), ": \n", sep = "") print(x) } -
joethorley revised this gist
Jan 10, 2017 . 1 changed file with 5 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,7 @@ dprint <- function(x, note = NULL) { if (!is.null(note)) cat("\n**", note, "**\n") cat("\n", deparse(substitute(x)), ": \n", sep = "") print(x) }
-
joethorley revised this gist
Jan 10, 2017 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ dprint <- function(x) { cat("\n", deparse(substitute(x)), ": \n", sep = "") print(x) } -
joethorley revised this gist
Jan 10, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ dprint <- function(x) { cat(deparse(substitute(x)), ": ", sep = "") print(x) } -
joethorley renamed this gist
Jan 4, 2017 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
joethorley renamed this gist
Jan 4, 2017 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
joethorley created this gist
Jan 4, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ dprint <- function(x) { print(deparse(substitute(x))) print(x) }