Diagramming data

I would like to create a diagram with ggplot, I read the function call is similar to this:

ggplot(data = group_results)

My data, I already stored in two separate vectors and I have my .txt file that I imported.

Now I do not know why I receive an error:

Error: object '...' not found

Can a community member inform me on how to change the parameters for my data?

The \dots is an optional parameter placeholder that should not be used as an argument itself, but should be replaced with the actual argument parameter that is intended, if any.

1 Like