ListPlot w/ Dynamic[] choice of external data files
- To: mathgroup at smc.vnet.net
- Subject: [mg93652] ListPlot w/ Dynamic[] choice of external data files
- From: Andreas <aagas at ix.netcom.com>
- Date: Thu, 20 Nov 2008 04:57:06 -0500 (EST)
I have a simple ListPlot[] with 2 data sets from external sources: ListPlot[ Flatten[Import["C:\...\series1.txt, Pcumulative.txt", "Table"]], Flatten[Import["C:\...\series2.txt, Pcumulative.txt", "Table"]] ] series1 represents a time-series series2 represents a baseline I want to make the data series dynamic, by linking each of the 2 to the ListPlot[] via 2 MenuView[] controls (or some other controls) which would enable me to select a different "series*.txt" file to plot. Eventually I'll put all of this in a simple Panel interface. So I want a single ListPlot[] with a means to alter the data sets it displays via a selection control. I know I need to use Dynamic[], but I can't quite figure out how to tie the ListPlot[] to the Dynamic[] to the MenuView[]. Any suggestions, much appreciated. Thx.