#!/usr/bin/env python #-*- coding:utf-8 -*- """ This file is part of P0015. P0015 is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. P0015 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with P0015. If not, see <http://www.gnu.org/licenses/>. """ from exparser import Tools from analysis import helpers, parse, tracePlot, barPlot, validate, polar, \ regress Tools.analysisLoop( parse.getDataMatrix(cacheId='data'), mods=[helpers, tracePlot, barPlot, validate, polar, regress], pre=['_filter'], full=['fullBarPlot', 'fullTracePlot', 'fullTracePlotBySubject', 'descriptives'] )
#!/usr/bin/env python #-*- coding:utf-8 -*- """ This file is part of P0014.1. P0014.1 is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. P0014.1 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with P0014.1. If not, see <http://www.gnu.org/licenses/>. """ from exparser import Tools from analysis import helpers, parse helpers.exp == 'exp1' Tools.analysisLoop(parse.getDataMatrix(cacheId='data'), mods=[helpers], pre=['filter'])