Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reprex exercise #7

Open
lcolladotor opened this issue Aug 20, 2024 · 20 comments
Open

reprex exercise #7

lcolladotor opened this issue Aug 20, 2024 · 20 comments

Comments

@lcolladotor
Copy link
Owner

Similar to #2, but for 2024.

-- 0 --

stop("This R error is weird")
#> Error in eval(expr, envir, enclos): This R error is weird

Created on 2024-08-20 with reprex v2.1.1

@XindiShan
Copy link

stop("This R error is weird")
#> Error in eval(expr, envir, enclos): This R error is weird

Created on 2024-08-28 with reprex v2.1.1

1 similar comment
@davidluoshy
Copy link

stop("This R error is weird")
#> Error in eval(expr, envir, enclos): This R error is weird

Created on 2024-08-28 with reprex v2.1.1

@lcolladotor
Copy link
Owner Author

stop("This R error is weird")
#> Error in eval(expr, envir, enclos): This R error is weird

Created on 2024-08-29 with reprex v2.1.1

@lcolladotor
Copy link
Owner Author

devel > stop("This R error is weird")
Error: This R error is weird

@ANUMMINHAS2
Copy link

stop("This R error is weird")
Error: This R error is weird

@jmart305
Copy link

stop("This R error is weird")
#> Error in eval(expr, envir, enclos): This R error is weird

@leihm8
Copy link

leihm8 commented Aug 29, 2024

stop("This R error is weird")
#> Error in eval(expr, envir, enclos): This R error is weird

@manamiueshima
Copy link

stop("This R error is weird")
#> Error in eval(expr, envir, enclos): This R error is weird

Created on 2024-08-29 with reprex v2.1.1

@kkurland
Copy link

kkurland commented Aug 29, 2024

stop("This R error is weird")
#> Error in eval(expr, envir, enclos): This R error is weird
Created on 2024-08-29 with reprex v2.1.1

@HridikaS
Copy link

stop("This R error is weird")
#> Error in eval(expr, envir, enclos): This R error is weird
Created on 2024-08-30 with reprex v2.1.1

@yinuotu
Copy link

yinuotu commented Sep 1, 2024

stop("This R error is weird")
#> Error in eval(expr, envir, enclos): This R error is weird

Created on 2024-09-01 with reprex v2.1.1

@jgrant48
Copy link

jgrant48 commented Sep 5, 2024

stop("This R error is weird")
#> Error in eval(expr, envir, enclos): This R error is weird

@yunyi-ru
Copy link

yunyi-ru commented Sep 6, 2024

reprex::reprex()
#> ℹ Non-interactive session, setting `html_preview = FALSE`.
#> CLIPR_ALLOW has not been set, so clipr will not run interactively
#> Error in switch(where, expr = stringify_expression(x_expr), clipboard = ingest_clipboard(), : EXPR must be a length 1 vector

Created on 2024-09-05 with reprex v2.1.1

Somehow my reprex::reprex() is giving a strange answer rather than the correct one, but after I tried a few times it gives the correct answer (shown below). Does anybody know what had happened?

stop("This R error is weird")
#> Error in eval(expr, envir, enclos): This R error is weird

Created on 2024-09-05 with reprex v2.1.1

@DB-555
Copy link

DB-555 commented Sep 7, 2024

reprex::reprex()
#> ℹ Non-interactive session, setting html_preview = FALSE.
#> CLIPR_ALLOW has not been set, so clipr will not run interactively
#> Error in switch(where, expr = stringify_expression(x_expr), clipboard = ingest_clipboard(), : EXPR must be a length 1 vector
Created on 2024-09-07 with reprex v2.1.1

@kgordon1
Copy link

kgordon1 commented Sep 7, 2024

stop("This R error is weird")
#> Error in eval(expr, envir, enclos): This R error is weird

@kgordon1
Copy link

kgordon1 commented Sep 7, 2024

reprex::reprex()
#> ℹ Non-interactive session, setting `html_preview = FALSE`.
#> CLIPR_ALLOW has not been set, so clipr will not run interactively
#> Error in switch(where, expr = stringify_expression(x_expr), clipboard = ingest_clipboard(), : EXPR must be a length 1 vector

Created on 2024-09-05 with reprex v2.1.1

Somehow my reprex::reprex() is giving a strange answer rather than the correct one, but after I tried a few times it gives the correct answer (shown below). Does anybody know what had happened?

stop("This R error is weird")
#> Error in eval(expr, envir, enclos): This R error is weird

Created on 2024-09-05 with reprex v2.1.1

I had this same error the first time I tried the exercise. I realized that the Clipboard was storing reprex::reprex() rather than stop("This R error is weird").

@nlanglo3
Copy link

nlanglo3 commented Sep 7, 2024

stop("This R error is weird")
#> Error in eval(expr, envir, enclos): This R error is weird

@lcolladotor
Copy link
Owner Author

Thanks @kgordon1 for answering @yunyi-ru's question!

Best,
Leo

@yunyi-ru
Copy link

yunyi-ru commented Sep 9, 2024

reprex::reprex()
#> ℹ Non-interactive session, setting `html_preview = FALSE`.
#> CLIPR_ALLOW has not been set, so clipr will not run interactively
#> Error in switch(where, expr = stringify_expression(x_expr), clipboard = ingest_clipboard(), : EXPR must be a length 1 vector

Created on 2024-09-05 with reprex v2.1.1

Somehow my reprex::reprex() is giving a strange answer rather than the correct one, but after I tried a few times it gives the correct answer (shown below). Does anybody know what had happened?

stop("This R error is weird")
#> Error in eval(expr, envir, enclos): This R error is weird

Created on 2024-09-05 with reprex v2.1.1

I had this same error the first time I tried the exercise. I realized that the Clipboard was storing reprex::reprex() rather than stop("This R error is weird").

Got it! I've tried restarting the R session to make it work. Thanks for your answer!

@Dtomar3
Copy link

Dtomar3 commented Sep 12, 2024

reprex::reprex()
#> ℹ Non-interactive session, setting html_preview = FALSE.
#> CLIPR_ALLOW has not been set, so clipr will not run interactively
#> Error in switch(where, expr = stringify_expression(x_expr), clipboard = ingest_clipboard(), : EXPR must be a length 1 vector
Created on 2024-09-11 with reprex v2.1.1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests