I have 4 sets of continuous data which I want to group into one and map on one axis against a success variable on the other axis. I'm using ggplot2/tidyverse.
The data in the screenshot shows each category which I want to map on one axis (type of purchase) and this will be plotted against number of sales/total sales on the other.
To help us help you, could you please prepare a reproducible example (reprex) illustrating your issue? Please have a look at this guide, to see how to create one:
Short Version
You can share your data in a forum friendly way by passing the data to share to the dput() function.
If your data is too large you can use standard methods to reduce it before sending to dput().
When you come to share the dput() text that represents your data, please be sure to format your post with triple backticks on the line before your code begins to format it appropriately.
Please, dont use screenshots when you are sharing text, its unfortunately often harder to read, and certainly harder to refer back to with proposed changes.
if you use df_paste on the head of some data.frame you wish to share, do so in your console, and copy the resulting text which is code to construct the frame, and put only that into your script, and not also the df_paste code from which you constructed it.