Trying to plot points based on student input in table

Hi, I’m new to using CL, and I’m trying to use a table where students have put answers to an x-value for an exponent in the y-value to plot the points and curve the students have generated in the table. I’m just having trouble seeing how to feed the point as a sink to the graph. Here is what I have so far:

y1=gtable.cellNumericValue(1,1)
y2=gtable.cellNumericValue(1,2)
y3=gtable.cellNumericValue(1,3)
y4=gtable.cellNumericValue(1,4)
y5=gtable.cellNumericValue(1,5)
y6=gtable.cellNumericValue(1,6)
y7=gtable.cellNumericValue(1,7)

This gives me my numerical values of student input in all of those y’s. Now how do I get the graph to plot them?

Not entirely sure if I interpreted your answer correctly, but you might wish to explore this activity. It might be what you need to get pointed in the right direction.
https://teacher.desmos.com/activitybuilder/custom/5ddaf945a2694028c93c90b1

Yes, this is exactly what I wanted, thank you. I copied your code and only changed the names of my stuff that I had called it. It still won’t plot the points. It takes input into the table, but it won’t put the points on the graph the way the demo does.

Emily: there were a couple of errors.

  1. Slide 1 - the component is labeled “Choice1” (note capital C) yet you referred to it as “choice1” (lowercase c) in the script.
  2. You had not copied over the equations/calculations from the original graph component into your sketch component.

I have reworked your activity with these corrections. I have also added a few items as illustration of other options:

  1. When you correctly select the graph in slide 1 - a “Well done!” note appears.
  2. When you correctly complete the card match in slide 2 - a “Well done!” note appears.
  3. When you correctly complete the table and sketch a graph, the actual graph appears in slide 3.

Here is the reworked activity:

Thank you so much! I really appreciate your help!

You might also consider columnNumericValues instead of defining each one separately.

HI I’m Maryam can you help me :blush:

Welcome Maryam! You should start a new thread with your question.

One big tip is that it’s very helpful to share a link to your activity, so others can dive into the code to more accurately help with your situation.