From a8e239120621043fd8ddb732fcf2508156d72e36 Mon Sep 17 00:00:00 2001 From: ltcptgeneral <35508619+ltcptgeneral@users.noreply.github.com> Date: Mon, 19 Nov 2018 17:02:02 -0600 Subject: [PATCH] analysis.py - v 1.0.3.006 changelog v 1.0.3.006: - reorganized the imports list to be in alphabetical order --- analysis.py | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/analysis.py b/analysis.py index 3e6a77d0..73562b49 100644 --- a/analysis.py +++ b/analysis.py @@ -8,7 +8,7 @@ #setup: -__version__ = "1.0.3.005" +__version__ = "1.0.3.006" __author__ = ( "Arthur Lu , " @@ -35,23 +35,24 @@ __all__ = [ #now back to your regularly scheduled programming: -#import statistics <-- statistics.py functions have been integrated into analysis.py as of v 1.0.3.002 -import math +#imports (now in alphabetical order! v 1.0.3.006): + +from bisect import bisect_left, bisect_right +import collections import csv +from decimal import Decimal import functools +from fractions import Fraction +from itertools import groupby +import math +import matplotlib +import numbers import numpy as np +import scipy +from sklearn import * +#import statistics <-- statistics.py functions have been integrated into analysis.py as of v 1.0.3.002 import time import torch -import scipy -import matplotlib -from sklearn import * -import collections -import numbers -from fractions import Fraction -from decimal import Decimal -from itertools import groupby -from bisect import bisect_left, bisect_right - def _init_device (setting, arg): #initiates computation device for ANNs if setting == "cuda":