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

ggtrendline outputs #1

Open
ask4jubad opened this issue May 11, 2022 · 1 comment
Open

ggtrendline outputs #1

ask4jubad opened this issue May 11, 2022 · 1 comment
Labels
good first issue Good for newcomers

Comments

@ask4jubad
Copy link

Using the ggtrendline within a for loop does not produce an output except with other I/O methods like plot, view, show, print.
Screenshot 2022-05-12 012520

@PhDMeiwp PhDMeiwp added the good first issue Good for newcomers label May 12, 2022
@PhDMeiwp
Copy link
Owner

PhDMeiwp commented May 12, 2022

Dear ask4jubad,

Thanks for your comment on this issue.

As you mentioned, plot(), show(), and print() were suggested for a loop, but not View().

  • For a loop, your codes worked very well:
for (i in c("line2P", "line3P", "log2P", "exp2P", "exp3P", "power2P", "power3P")){
p <- ggtrendline(x, y, model = i, ...)
print(p)
}
# or show(p)
# or plot(p)
  • If you want to add geom_point() together with ggtrendline() for a loop, try it as follows:
for (i in c("line2P", "line3P", "log2P", "exp2P", "exp3P", "power2P", "power3P")){
p <- ggtrendline(x, y, model = i, ...) + geom_point(aes(x, y),  color = "blue", shape = 1, size = 3)
print(p)
}
# or show(p)
# or plot(p)
# Pay special attention to the position of each left and right parenthesis above.

Best regards

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

No branches or pull requests

2 participants