I want to Plot a function combined with different ListPlots. But i want only one ListPlot at a time displayed. Therefore i want to use Manipulate. My Code looks something like this.
test1 = Import["/Users/xx/Documents/xxx/test1.csv"];
test2 = Import["/Users/xx/Documents/xxx/test1.csv"];
test3 = Import["/Users/xx/Documents/xxx/test1.csv"];
importList:={test1,test2,test3};
import:=.;
Manipulate[
Show[Plot[MAnt[t], {t, 0, 5}],
ListPlot[import]], {import, importList}, LocalizeVariables -> False, TrackedSymbols :>{import}]
I do this a lot with plots of different functions, but i don't get it to work with lists. Any ideas?
Edit1: Well obviously Mathematica joins the three lists together. Can I prevent Mathematica from doing this?
importList:={"test1","test2","test3"}
Won't work either.