I need to make a graph in concatenated R, it's 4177 iterations, I'm using ggplot2, but it's giving the error below:
Error: evaluation nested too deeply: infinite recursion / options(expressions=)?
Error during wrapup: evaluation nested too dee...
To illustrate the question I considered the hypothetical situation below using the ggplot2 and gridExtra libraries.
library(ggplot2)
library(gridExtra)
df<-data.frame(x=1:10,y=1:10)
a<-ggplot(data = df, aes(x = x, y=y^...
Hello,
I'm trying to get the chart below to start on the y-axis, but I'm not getting it. The idea is to bring the first value of the x-axis, the time 6h, to the value 0 of the y-axis. Below is the script used and the image obtained.
Can an...
I'm learning how to use ggplot2 and would like to make a graph and then overlap a point in it. For example:
set.seed(1)
a = data.frame(X1 = rnorm(3), X2 = rnorm(3))
g <- ggplot(a, aes(x = X1, y = X2), colour="black",...
I built the chart below using the grid.arrange command of the gridExtra package, I would like to leave it with the visuals of the multi-faceted graphs, using the sample size as a facet, is it possible?
library(ggplot2)
library(gr...
I have the problem reported in the title and I do not understand why in RStudio subtitle and caption are not read. When I replicate the code in Visual Studio, it loads all the commands correctly - the graphic looks exactly like it is in the code...
I'd like to show the species in the NMDS chart. I can only show the points of the communities in each group, but I would like to show the species. My chart looks like this:
Hello, masters of data analysis
I have a problem with plotting two graphs with different scales on the y-axis, the left-hand ones represents unity and the right ones represent Dia.
I tried to find some information about it, most of the inf...
Q
{r}
cambio2 <- data.frame(cambio)
cambio2 %>%
ggplot(aes(y = receita,
x = despesa
)
) + geom_point()
I want to make the chart, but the points in the graph do not appea...