Populate a table embedded in a graph?

I’m wondering if it’s possible to take the graph layer points that I’m porting over from slide 3 to slide 4 and have them auto-populate a table within the graphing calculator section. OR if there’s an easier way to set up a regression equation and r-value from the scatterplot.
Thanks!!

You would first need to declare and empty list for each column like shown below:

Then you would need to use CL in Graph4 like

numberList(X): Table3.columnNumericValues(1)
numberList(Y): Table3.columnNumericValues(2)

This is essentially saying
“Replace the list values in a list named X with the values from column one from Table3.”
“Replace the list values in a list named Y with the values from column two from Table3.”

Not that it hurts, but you don’t have to use an empty list as the CL will overwrite whatever is there (as you stated). The CL does not run for thumbnail previews, so it will show whatever state the graph is in editing. Convenient if you want to show a default image of some sort.