Hi @apeach86,
Welcome to R! We're glad to have you here.
Shiny can be a pain to navigate because of all the nested parentheses and brackets. I can't fully run your example because you haven't provided reproducible data to go with it, but I fiddled around and it looks like you just your parentheses in the wrong places--you need to add a parenthesis after both selectInput items in the sidebarPanel and remove one from after the mainPanel code.
Thank you for your assistance. That was able to get the app to run but I got a new error, shown below. I tried to run the reprex package but I am not sure I ran it correctly.
It looks like in order to run this app, we'll need the data, which seems to be called "cdc15". Do you have access to that data, or can you mock up some fake data to show us the structure?
Hello,
I'm sure you shared this image with the best intentions, but perhaps you didnt realise what it implies.
If someone wished to use example data to test code against, they would type it out from your screenshot...
This is very unlikely to happen, and so it reduces the likelihood you will receive the help you desire.
Therefore please see this guide on how to reprex data. Key to this is use of either datapasta, or dput() to share your data as code
This is confusing because you have select inputs that you use to interrogate a Q6 object that we can't see and you make a selectData reactive from that and don't use it for anything. And then in the render plot you are using a df object we haven't seen and assuming it has variables called X and Y that we can't see relate to anything else.