Macro, I'm not entirely sure what you are expecting to happen when you select a column and as ParaView to plot it over time. ParaView will take statistics over the id values and give you a quartile plot on that. I don't think that is what you want. From the earlier part of your email, it sounds like you really want to plot the number of cells over time. To do that, you first need to compute the cell count into some sort of data structure. Unfortunately there is no direct way to do this, but I found an old email thread (http://www.paraview.org/pipermail/paraview/2008-November/010080.html) that describes how to leverage the histogram filter to do it. Here are some updated instructions for ParaView 4.4.
1. Run your data through the Histogram filter. Set "Bin Count" to 1. Make "Select Input Array" point to a cell variable. Apply. The result should be a histogram with exactly one bin. 2. View the data in the Spreadsheet view. Close all the views and then select "Spreadsheet View" in the resulting empty view. Make sure the Histogram filter is visible in the spreadsheet view. There should be a single row. Select that row so that it is highlighted. (Note, this is only necessary because issue 14978 is not implemented yet. http://www.paraview.org/Bug/view.php?id=14978) 3. Add the Plot Selection Over Time filter. Apply. -Ken On 9/18/15, 7:58 AM, "ParaView on behalf of Marco Kokic" <[email protected] on behalf of [email protected]> wrote: >Dear paraviewers, > >I am analyzing 2D tissue data and I would like to count the number of >cells over time. After I extract a polygonal mesh from my multiblock >dataset I want to visualize the polygonal mesh statistics which show the >number of cells at every time point. Unfortunately, I cannot find a way >to plot the selected Cell ID column over time (see screenshot here: >http://imgur.com/LICqYdV ). Any suggestions on how to get around this? > >Thanks in advance ! > >With best regards, >Marco >_______________________________________________ >Powered by www.kitware.com > >Visit other Kitware open-source projects at >http://www.kitware.com/opensource/opensource.html > >Please keep messages on-topic and check the ParaView Wiki at: >http://paraview.org/Wiki/ParaView > >Search the list archives at: http://markmail.org/search/?q=ParaView > >Follow this link to subscribe/unsubscribe: >http://public.kitware.com/mailman/listinfo/paraview _______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the ParaView Wiki at: http://paraview.org/Wiki/ParaView Search the list archives at: http://markmail.org/search/?q=ParaView Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/paraview
