-
Notifications
You must be signed in to change notification settings - Fork 190
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
JOSS review: gghistostats #577
Comments
I solved it by installing the font from https://fonts.google.com/specimen/Titillium+Web |
I'll let you decide whether this should be documented anywhere, or whether it's OK to close the issue as it is. |
This is one of the most common error encountered while using For example,
and the list goes on. Not always clear where it is coming from, so I have no instructions about this error. |
Noted - hopefully this threads and the links that you provided will give other users good places to start looking for answers. I came back to this thread because I just ran into a similar error again, because of another font missing on my computer ggscatterstats(
data = dplyr::filter(movies_long, genre == "Action"),
x = budget,
y = rating,
type = "robust", # type of test that needs to be run
xlab = "Movie budget (in million/ US$)", # label for x axis
ylab = "IMDB rating", # label for y axis
label.var = title, # variable for labeling data points
label.expression = rating < 5 & budget > 100, # expression that decides which points to label
title = "Movie budget and IMDB rating (action)", # title text for the plot
caption = expression(paste(italic("Note"), ": IMDB stands for Internet Movie DataBase")),
ggtheme = hrbrthemes::theme_ipsum_ps(), # choosing a different theme
ggstatsplot.layer = FALSE, # turn off `ggstatsplot` theme layer
marginal.type = "boxplot", # type of marginal distribution to be displayed
xfill = "pink", # color fill for x-axis marginal distribution
yfill = "#009E73" # color fill for y-axis marginal distribution
)
Also, speaking about RStudio, from past experience, I noticed that resizing the "Plots" pane often helps, especially increasing the size of the pane, so that RStudio gets as much space as possible to fits margins. |
Also: users should make sure that they restart RStudio after installing new fonts. |
That's a helpful tip, thanks! |
I'm running into an error running some code from the README.
Namely
The error is
I'm not sure yet whether the error relates to the polygon edge, the font that cannot be found, or both.
For openjournals/joss-reviews#3167
The text was updated successfully, but these errors were encountered: