repo_name
string
path
string
copies
string
size
string
content
string
license
string
SmokinCaterpillar/pypet
pypet/tests/unittests/shared_data_test.py
1
37080
__author__ = ('Robert Meyer', 'Mehmet Nevvaf Timur') import sys import unittest import os import platform import numpy as np import pandas as pd import tables as pt from pypet import SharedPandasFrame, ObjectTable, make_ordinary_result, Result, \ make_shared_result, compact_hdf5_file, SharedCArray, SharedEArray...
bsd-3-clause
I--P/numpy
numpy/linalg/linalg.py
4
75738
"""Lite version of scipy.linalg. Notes ----- This module is a lite version of the linalg.py module in SciPy which contains high-level Python interface to the LAPACK library. The lite version only accesses the following LAPACK functions: dgesv, zgesv, dgeev, zgeev, dgesdd, zgesdd, dgelsd, zgelsd, dsyevd, zheevd, dgetr...
bsd-3-clause
toobaz/pandas
pandas/tests/io/json/test_pandas.py
2
57735
from collections import OrderedDict from datetime import timedelta from io import StringIO import json import os import numpy as np import pytest from pandas.compat import is_platform_32bit import pandas.util._test_decorators as td import pandas as pd from pandas import DataFrame, DatetimeIndex, Series, Timestamp, r...
bsd-3-clause
maxalbert/bokeh
bokeh/properties.py
1
62784
""" Properties are objects that can be assigned as class level attributes on Bokeh models, to provide automatic serialization and validation. For example, the following defines a model that has integer, string, and list[float] properties:: class Model(HasProps): foo = Int bar = String baz ...
bsd-3-clause
Evfro/polara
polara/recommender/models.py
1
47667
from functools import wraps from collections import namedtuple import warnings from concurrent.futures import ThreadPoolExecutor from concurrent.futures import as_completed import pandas as pd import numpy as np import scipy as sp from scipy.sparse import coo_matrix, csr_matrix from scipy.sparse.linalg import svds f...
mit
nmartensen/pandas
pandas/core/indexes/timedeltas.py
1
34001
""" implement the TimedeltaIndex """ from datetime import timedelta import numpy as np from pandas.core.dtypes.common import ( _TD_DTYPE, is_integer, is_float, is_bool_dtype, is_list_like, is_scalar, is_integer_dtype, is_object_dtype, is_timedelta64_dtype, is_timedelta64_ns_dtype, ...
bsd-3-clause
numpy/datetime
numpy/core/code_generators/ufunc_docstrings.py
5
83888
# Docstrings for generated ufuncs docdict = {} def get(name): return docdict.get(name) def add_newdoc(place, name, doc): docdict['.'.join((place, name))] = doc add_newdoc('numpy.core.umath', 'absolute', """ Calculate the absolute value element-wise. Parameters ---------- x : array_like...
bsd-3-clause
ryfeus/lambda-packs
Tensorflow_Pandas_Numpy/source3.6/pandas/core/reshape/reshape.py
1
35967
# pylint: disable=E1101,E1103 # pylint: disable=W0703,W0622,W0613,W0201 from pandas.compat import range, text_type, zip from pandas import compat from functools import partial import itertools import numpy as np from pandas.core.dtypes.common import ( _ensure_platform_int, is_list_like, is_bool_dtype, nee...
mit
mhvk/astropy
astropy/modeling/functional_models.py
2
90573
# Licensed under a 3-clause BSD style license - see LICENSE.rst """Mathematical models.""" # pylint: disable=line-too-long, too-many-lines, too-many-arguments, invalid-name import numpy as np from astropy import units as u from astropy.units import Quantity, UnitsError from astropy.utils.decorators import deprecated ...
bsd-3-clause
JPFrancoia/scikit-learn
sklearn/model_selection/tests/test_split.py
7
41116
"""Test the split module""" from __future__ import division import warnings import numpy as np from scipy.sparse import coo_matrix, csc_matrix, csr_matrix from scipy import stats from scipy.misc import comb from itertools import combinations from sklearn.utils.fixes import combinations_with_replacement from sklearn.u...
bsd-3-clause
RPGOne/Skynet
scikit-learn-0.18.1/sklearn/feature_extraction/tests/test_text.py
39
36062
from __future__ import unicode_literals import warnings from sklearn.feature_extraction.text import strip_tags from sklearn.feature_extraction.text import strip_accents_unicode from sklearn.feature_extraction.text import strip_accents_ascii from sklearn.feature_extraction.text import HashingVectorizer from sklearn.fe...
bsd-3-clause
Titan-C/scikit-learn
sklearn/decomposition/nmf.py
8
45009
""" Non-negative matrix factorization """ # Author: Vlad Niculae # Lars Buitinck # Mathieu Blondel <mathieu@mblondel.org> # Tom Dupre la Tour # License: BSD 3 clause from __future__ import division, print_function from math import sqrt import warnings import numbers import time import numpy ...
bsd-3-clause
jorik041/scikit-learn
sklearn/linear_model/logistic.py
105
56686
""" Logistic Regression """ # Author: Gael Varoquaux <gael.varoquaux@normalesup.org> # Fabian Pedregosa <f@bianp.net> # Alexandre Gramfort <alexandre.gramfort@telecom-paristech.fr> # Manoj Kumar <manojkumarsivaraj334@gmail.com> # Lars Buitinck # Simon Wu <s8wu@uwaterloo.ca> imp...
bsd-3-clause
cbertinato/pandas
pandas/tests/dtypes/test_inference.py
1
49345
""" These the test the public routines exposed in types/common.py related to inference and not otherwise tested in types/test_common.py """ import collections from datetime import date, datetime, time, timedelta from decimal import Decimal from fractions import Fraction from io import StringIO from numbers import Numb...
bsd-3-clause
tkaitchuck/nupic
external/darwin64/lib/python2.6/site-packages/matplotlib/artist.py
69
33042
from __future__ import division import re, warnings import matplotlib import matplotlib.cbook as cbook from transforms import Bbox, IdentityTransform, TransformedBbox, TransformedPath from path import Path ## Note, matplotlib artists use the doc strings for set and get # methods to enable the introspection methods of ...
gpl-3.0
cmorgan/pysystemtrade
syscore/accounting.py
1
56500
""" Suite of things to work out p&l, and statistics thereof """ from copy import copy, deepcopy import pandas as pd from pandas.tseries.offsets import BDay import numpy as np from scipy.stats import skew, ttest_rel, ttest_1samp import scipy.stats as stats import random from syscore.algos import robust_vol_calc from...
gpl-3.0
dmnfarrell/epitopepredict
epitopepredict/plotting.py
1
37189
#!/usr/bin/env python """ epitopepredict plotting Created February 2016 Copyright (C) Damien Farrell This program 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 th...
apache-2.0
wrightni/OSSP
training_gui.py
1
40462
#title: Training Set Creation for Random Forest Classification #author: Nick Wright #Inspired by: Justin Chen #purpose: Creates a GUI for a user to identify watershed superpixels of an image as # melt ponds, sea ice, or open water to use as a training data set for a # Random Forest Classification method...
mit
HolgerPeters/scikit-learn
sklearn/metrics/tests/test_ranking.py
46
41270
from __future__ import division, print_function import numpy as np from itertools import product import warnings from scipy.sparse import csr_matrix from sklearn import datasets from sklearn import svm from sklearn.datasets import make_multilabel_classification from sklearn.random_projection import sparse_random_mat...
bsd-3-clause
kashif/scikit-learn
sklearn/linear_model/tests/test_sgd.py
8
44274
import pickle import unittest import numpy as np import scipy.sparse as sp from sklearn.utils.testing import assert_array_equal from sklearn.utils.testing import assert_almost_equal from sklearn.utils.testing import assert_array_almost_equal from sklearn.utils.testing import assert_greater from sklearn.utils.testing ...
bsd-3-clause
caisq/tensorflow
tensorflow/python/estimator/canned/baseline_test.py
11
54918
# Copyright 2017 The TensorFlow Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applica...
apache-2.0
michigraber/scikit-learn
sklearn/linear_model/ridge.py
89
39360
""" Ridge regression """ # Author: Mathieu Blondel <mathieu@mblondel.org> # Reuben Fletcher-Costin <reuben.fletchercostin@gmail.com> # Fabian Pedregosa <fabian@fseoane.net> # Michael Eickenberg <michael.eickenberg@nsup.org> # License: BSD 3 clause from abc import ABCMeta, abstractmethod impor...
bsd-3-clause
ChanderG/scikit-learn
sklearn/cross_validation.py
96
58309
""" The :mod:`sklearn.cross_validation` module includes utilities for cross- validation and performance evaluation. """ # Author: Alexandre Gramfort <alexandre.gramfort@inria.fr>, # Gael Varoquaux <gael.varoquaux@normalesup.org>, # Olivier Grisel <olivier.grisel@ensta.org> # License: BSD 3 clause from...
bsd-3-clause
rhattersley/cartopy
lib/cartopy/crs.py
1
90404
# (C) British Crown Copyright 2011 - 2018, Met Office # # This file is part of cartopy. # # cartopy is free software: you can redistribute it and/or modify it under # the terms of the GNU Lesser General Public License as published by the # Free Software Foundation, either version 3 of the License, or # (at your option)...
lgpl-3.0
jskDr/jamespy_py3
medic/kdl_cl.py
1
40483
""" KDL - deep learning for medic """ import matplotlib.pyplot as plt import numpy as np import pandas as pd from scipy.signal import convolve2d, fftconvolve from sklearn import preprocessing, model_selection, metrics import os from keras.datasets import mnist from keras.models import Sequential from keras.layers imp...
mit
davidzchen/tensorflow
tensorflow/python/keras/engine/data_adapter.py
1
53018
# Copyright 2019 The TensorFlow Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applica...
apache-2.0
dsm054/pandas
pandas/tests/plotting/test_frame.py
3
123748
# coding: utf-8 """ Test cases for DataFrame.plot """ import pytest import string import warnings from datetime import datetime, date import pandas as pd from pandas import (Series, DataFrame, MultiIndex, PeriodIndex, date_range, bdate_range) from pandas.core.dtypes.api import is_list_like from ...
bsd-3-clause
untom/scikit-learn
sklearn/ensemble/weight_boosting.py
30
40648
"""Weight Boosting This module contains weight boosting estimators for both classification and regression. The module structure is the following: - The ``BaseWeightBoosting`` base class implements a common ``fit`` method for all the estimators in the module. Regression and classification only differ from each ot...
bsd-3-clause
MJuddBooth/pandas
pandas/tests/io/test_pytables.py
1
192388
from contextlib import contextmanager import datetime from datetime import timedelta from distutils.version import LooseVersion import os import tempfile from warnings import catch_warnings, simplefilter import numpy as np import pytest from pandas.compat import ( PY35, PY36, BytesIO, is_platform_little_endian, i...
bsd-3-clause
BigDataforYou/movie_recommendation_workshop_1
big_data_4_you_demo_1/venv/lib/python2.7/site-packages/pandas/tseries/converter.py
2
32615
from datetime import datetime, timedelta import datetime as pydt import numpy as np from dateutil.relativedelta import relativedelta import matplotlib.units as units import matplotlib.dates as dates from matplotlib.ticker import Formatter, AutoLocator, Locator from matplotlib.transforms import nonsingular from pand...
mit
tjlaboss/openmc
openmc/data/photon.py
8
44955
from collections import OrderedDict from collections.abc import Mapping, Callable from copy import deepcopy from io import StringIO from math import pi from numbers import Integral, Real import os import h5py import numpy as np import pandas as pd from scipy.interpolate import CubicSpline import openmc.checkvalue as ...
mit
Leguark/pynoddy
pynoddy/Copy of history.py
3
46835
'''Noddy history file wrapper Created on 24/03/2014 @author: Florian Wellmann ''' import time # for header in model generation import numpy as np # import numpy as np # import matplotlib.pyplot as plt import events class NoddyHistory(): """Class container for Noddy history files""" def __init__(self, ...
gpl-2.0
BigDataforYou/movie_recommendation_workshop_1
big_data_4_you_demo_1/venv/lib/python2.7/site-packages/pandas/io/tests/test_packers.py
1
30648
import nose import warnings import os import datetime import numpy as np import sys from distutils.version import LooseVersion from pandas import compat from pandas.compat import u from pandas import (Series, DataFrame, Panel, MultiIndex, bdate_range, date_range, period_range, Index, Categorical) ...
mit
larsoner/mne-python
mne/source_estimate.py
2
127983
# Authors: Alexandre Gramfort <alexandre.gramfort@inria.fr> # Matti Hämäläinen <msh@nmr.mgh.harvard.edu> # Martin Luessi <mluessi@nmr.mgh.harvard.edu> # Mads Jensen <mje.mads@gmail.com> # # License: BSD (3-clause) import contextlib import copy import os.path as op from types import Generator...
bsd-3-clause
MJuddBooth/pandas
pandas/tests/indexes/interval/test_interval.py
1
52262
from __future__ import division from itertools import permutations import re import numpy as np import pytest from pandas.compat import lzip import pandas as pd from pandas import ( Index, Interval, IntervalIndex, Timedelta, Timestamp, date_range, interval_range, isna, notna, timedelta_range) import pandas....
bsd-3-clause
ammarkhann/FinalSeniorCode
lib/python2.7/site-packages/scipy/stats/_multivariate.py
12
112182
# # Author: Joris Vankerschaver 2013 # from __future__ import division, print_function, absolute_import import math import numpy as np import scipy.linalg from scipy.misc import doccer from scipy.special import gammaln, psi, multigammaln, xlogy, entr from scipy._lib._util import check_random_state from scipy.linalg.bl...
mit
lmallin/coverage_test
python_venv/lib/python2.7/site-packages/pandas/tests/test_algos.py
3
57570
# -*- coding: utf-8 -*- import numpy as np import pytest from numpy.random import RandomState from numpy import nan from datetime import datetime from itertools import permutations from pandas import (Series, Categorical, CategoricalIndex, Timestamp, DatetimeIndex, Index, Inter...
mit
quantumlib/ReCirq
recirq/otoc/parallel_xeb.py
1
31044
# Copyright 2020 Google # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, soft...
apache-2.0
tarthy6/dozer-thesis
py/plot.py
3
43753
# encoding: utf-8 # 2008 © Václav Šmilauer <eudoxos@arcig.cz> """ Module containing utility functions for plotting inside woo. Most functionality is exposed through :obj:`woo.core.Plot`, however. """ ## all exported names __all__=['live','liveInterval','autozoom','legendAlpha','scientific','scatterMarkerKw'] import...
gpl-2.0
gurkirt/actNet-inAct
processing/detection-fusion-working.py
1
32723
''' Autor: Gurkirt Singh Start data: 15th May 2016 purpose: of this file is read frame level predictions and process them to produce a label per video ''' from sklearn.svm import LinearSVC from sklearn.ensemble import RandomForestClassifier import numpy as np import pickle import os,h5py import time,json import scipy....
mit
oxtopus/nupic
external/linux32/lib/python2.6/site-packages/matplotlib/_cm.py
70
375423
""" Color data and pre-defined cmap objects. This is a helper for cm.py, originally part of that file. Separating the data (this file) from cm.py makes both easier to deal with. Objects visible in cm.py are the individual cmap objects ('autumn', etc.) and a dictionary, 'datad', including all of these objects. """ im...
gpl-3.0
Traecp/MCA_GUI
McaGUI_v17.py
3
73468
#!/usr/bin/python # -*- coding: utf-8 -*- import numpy as np import scipy.ndimage from scipy import stats from scipy.fftpack import fft, fftfreq, fftshift import os, sys import gc from os import listdir from os.path import isfile,join import gtk import matplotlib as mpl import matplotlib.pyplot as plt #mpl.use('GtkAgg'...
gpl-2.0
nguyentu1602/numpy
numpy/core/tests/test_multiarray.py
5
221306
from __future__ import division, absolute_import, print_function import collections import tempfile import sys import shutil import warnings import operator import io import itertools if sys.version_info[0] >= 3: import builtins else: import __builtin__ as builtins from decimal import Decimal import numpy as...
bsd-3-clause
DonBeo/scikit-learn
sklearn/cross_validation.py
5
57208
""" The :mod:`sklearn.cross_validation` module includes utilities for cross- validation and performance evaluation. """ # Author: Alexandre Gramfort <alexandre.gramfort@inria.fr>, # Gael Varoquaux <gael.varoquaux@normalesup.org>, # Olivier Grisel <olivier.grisel@ensta.org> # License: BSD 3 clause from...
bsd-3-clause
surgebiswas/poker
PokerBots_2017/Johnny/numpy/core/fromnumeric.py
22
98126
"""Module containing non-deprecated functions borrowed from Numeric. """ from __future__ import division, absolute_import, print_function import types import warnings import numpy as np from .. import VisibleDeprecationWarning from . import multiarray as mu from . import umath as um from . import numerictypes as nt ...
mit
sampadsaha5/sympy
sympy/holonomic/holonomic.py
3
90995
"""Holonomic Functions and Differential Operators""" from __future__ import print_function, division from sympy import (symbols, Symbol, diff, S, Dummy, Order, rf, meijerint, I, solve, limit, Float, nsimplify, gamma) from sympy.printing import sstr from sympy.core.compatibility import range from sympy.functions.c...
bsd-3-clause
FEPanalysis/alchemical-analysis-OLD
alchemical_analysis/alchemical_analysis.py
1
58462
#!/usr/bin/env python ###################################################################### # Alchemical Analysis: An open tool implementing some recommended practices for analyzing alchemical free energy calculations # Copyright 2011-2015 UC Irvine and the Authors # # Authors: Pavel Klimovich, Michael Shirts and Dav...
lgpl-2.1
elingg/tensorflow
tensorflow/contrib/labeled_tensor/python/ops/ops.py
11
44167
# Copyright 2016 The TensorFlow Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applica...
apache-2.0
kaiserroll14/301finalproject
main/pandas/tseries/offsets.py
9
87012
from datetime import date, datetime, timedelta from pandas.compat import range from pandas import compat import numpy as np from pandas.tseries.tools import to_datetime from pandas.tseries.timedeltas import to_timedelta from pandas.core.common import ABCSeries, ABCDatetimeIndex # import after tools, dateutil check fr...
gpl-3.0
mbayon/TFG-MachineLearning
venv/lib/python3.6/site-packages/pandas/tests/io/formats/test_style.py
5
36923
import copy import textwrap import re import pytest import numpy as np import pandas as pd from pandas import DataFrame import pandas.util.testing as tm jinja2 = pytest.importorskip('jinja2') from pandas.io.formats.style import Styler, _get_level_lengths # noqa class TestStyler(object): def setup_method(self,...
mit
wanggang3333/scikit-learn
sklearn/feature_extraction/tests/test_text.py
110
34127
from __future__ import unicode_literals import warnings from sklearn.feature_extraction.text import strip_tags from sklearn.feature_extraction.text import strip_accents_unicode from sklearn.feature_extraction.text import strip_accents_ascii from sklearn.feature_extraction.text import HashingVectorizer from sklearn.fe...
bsd-3-clause
codeaudit/gpss-research
source/sandpit.py
4
36385
''' Created on Nov 2012 @authors: James Robert Lloyd (jrl44@cam.ac.uk) David Duvenaud (dkd23@cam.ac.uk) Roger Grosse (rgrosse@mit.edu) ''' import flexiblekernel as fk import grammar import gpml import utils.latex import numpy as np import pylab import scipy.io import sys import os from job_contr...
mit
gregcaporaso/scikit-bio
skbio/stats/power.py
3
47995
r""" Empirical Power Estimation (:mod:`skbio.stats.power`) ===================================================== .. currentmodule:: skbio.stats.power The purpose of this module is to provide empirical, post-hoc power estimation of normally and non-normally distributed data. It also provides support to subsample data ...
bsd-3-clause
pydata/xarray
xarray/tests/test_dask.py
1
59200
import operator import pickle import sys from contextlib import suppress from distutils.version import LooseVersion from textwrap import dedent import numpy as np import pandas as pd import pytest import xarray as xr import xarray.ufuncs as xu from xarray import DataArray, Dataset, Variable from xarray.core import du...
apache-2.0
belltailjp/scikit-learn
sklearn/datasets/samples_generator.py
26
56311
""" Generate samples of synthetic data sets. """ # Authors: B. Thirion, G. Varoquaux, A. Gramfort, V. Michel, O. Grisel, # G. Louppe, J. Nothman # License: BSD 3 clause import numbers import warnings import array import numpy as np from scipy import linalg import scipy.sparse as sp from ..preprocessing impo...
bsd-3-clause
nomadcube/scikit-learn
sklearn/tree/tests/test_tree.py
72
47440
""" Testing for the tree module (sklearn.tree). """ import pickle from functools import partial from itertools import product import platform import numpy as np from scipy.sparse import csc_matrix from scipy.sparse import csr_matrix from scipy.sparse import coo_matrix from sklearn.random_projection import sparse_rand...
bsd-3-clause
nvoron23/scikit-learn
sklearn/ensemble/tests/test_gradient_boosting.py
56
37976
""" Testing for the gradient boosting module (sklearn.ensemble.gradient_boosting). """ import warnings import numpy as np from sklearn import datasets from sklearn.base import clone from sklearn.ensemble import GradientBoostingClassifier from sklearn.ensemble import GradientBoostingRegressor from sklearn.ensemble.grad...
bsd-3-clause
Sentient07/scikit-learn
sklearn/ensemble/forest.py
8
67993
"""Forest of trees-based ensemble methods Those methods include random forests and extremely randomized trees. The module structure is the following: - The ``BaseForest`` base class implements a common ``fit`` method for all the estimators in the module. The ``fit`` method of the base ``Forest`` class calls the ...
bsd-3-clause
alperyeg/elephant
elephant/current_source_density_src/icsd.py
9
35175
# -*- coding: utf-8 -*- ''' py-iCSD toolbox! Translation of the core functionality of the CSDplotter MATLAB package to python. The methods were originally developed by Klas H. Pettersen, as described in: Klas H. Pettersen, Anna Devor, Istvan Ulbert, Anders M. Dale, Gaute T. Einevoll, Current-source density estimation ...
bsd-3-clause
mgahsan/QuantEcon.py
quantecon/models/solow/model.py
7
38654
r""" ====================== The Solow Growth Model ====================== The following summary of the [solow1956] model of economic growth largely follows [romer2011]. Assumptions =========== The production function ---------------------------------------------- The [solow1956] model of economic growth focuses on ...
bsd-3-clause
pysb/pysb
pysb/simulator/base.py
5
57380
from abc import ABCMeta, abstractmethod import numpy as np import itertools import sympy import collections from collections.abc import Mapping, Sequence import numbers from pysb.core import MonomerPattern, ComplexPattern, as_complex_pattern, \ Parameter, Expression, Model, ComponentSet from pysb....
bsd-2-clause
profxj/old_xastropy
xastropy/xguis/img_widgets.py
5
58283
""" #;+ #; NAME: #; spec_widgets #; Version 1.0 #; #; PURPOSE: #; Module for IMG widgets with QT #; 12-Dec-2014 by JXP #;- #;------------------------------------------------------------------------------ """ from __future__ import print_function, absolute_import, division, unicode_literals # Import libraries ...
bsd-3-clause
ste616/atca
atsenscalc/code/atsenscalc_routines.py
1
41093
###################################################################### # The ATCA Sensitivity Calculator # Calculation subroutines. # Copyright 2015 Jamie Stevens, CSIRO # # This file is part of the ATCA Sensitivity Calculator. # # The ATCA Sensitivity Calculator is free software: you can # redistribute it and/or modif...
gpl-3.0
troycomi/microMS
GUICanvases/microMSModel.py
1
34074
from PIL import ImageDraw, ImageFont import matplotlib as mpl from matplotlib.path import Path from matplotlib.collections import PatchCollection import matplotlib.pyplot as plt import os import random from scipy.spatial.distance import pdist import numpy as np from copy import deepcopy, copy from GUICanvases import ...
mit
llondon6/kerr_public
kerr/mapqnms.py
1
35883
# %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% # '''Class for boxes in complex frequency space''' # The routines of this class assist in the solving and classification of # QNM solutions # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% # class cwbox: # ***********...
mit
zihua/scikit-learn
sklearn/metrics/classification.py
3
71852
"""Metrics to assess performance on classification task given class prediction Functions named as ``*_score`` return a scalar value to maximize: the higher the better Function named as ``*_error`` or ``*_loss`` return a scalar value to minimize: the lower the better """ # Authors: Alexandre Gramfort <alexandre.gramf...
bsd-3-clause
rabipanda/tensorflow
tensorflow/contrib/labeled_tensor/python/ops/ops.py
77
46403
# Copyright 2016 The TensorFlow Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applica...
apache-2.0
sunzhxjs/JobGIS
lib/python2.7/site-packages/pandas/tseries/tests/test_period.py
9
153010
"""Tests suite for Period handling. Parts derived from scikits.timeseries code, original authors: - Pierre Gerard-Marchant & Matt Knox - pierregm_at_uga_dot_edu - mattknow_ca_at_hotmail_dot_com """ from datetime import datetime, date, timedelta from numpy.ma.testutils import assert_equal from pandas import Timesta...
mit
rustychris/stompy
stompy/model/suntans/sun_driver.py
1
113146
import os import glob import copy import subprocess import six from collections import defaultdict import re import xarray as xr import numpy as np import datetime from matplotlib.dates import date2num, num2date from ... import utils, memoize #from ..delft import dflow_model as dfm from .. import hydro_model as hm fr...
mit
vortex-ape/scikit-learn
sklearn/cluster/optics_.py
2
34019
# -*- coding: utf-8 -*- """Ordering Points To Identify the Clustering Structure (OPTICS) These routines execute the OPTICS algorithm, and implement various cluster extraction methods of the ordered list. Authors: Shane Grigsby <refuge@rocktalus.com> Amy X. Zhang <axz@mit.edu> License: BSD 3 clause """ from ...
bsd-3-clause
xflin/spark
python/pyspark/sql/tests.py
2
131465
# -*- encoding: utf-8 -*- # # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the ...
apache-2.0
dhermes/google-cloud-python
bigquery/google/cloud/bigquery/client.py
2
69036
# Copyright 2015 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, s...
apache-2.0
Arcanewinds/FDL-LunarResources
CraterDetection/Polygon/craterDetector.py
1
47437
#Written by Timothy Seabrook #timothy.seabrook@cs.ox.ac.uk #This whole script takes a bit too long to run and didn't end up being too effective. #The basic idea is: #1. Detect edges using a canny filter (This in itself isn't reliable enough) #2. Group edges into 'shapes' permitting that some gaps may exist #3. For eac...
gpl-3.0
dsm054/pandas
pandas/tests/indexes/test_base.py
1
101055
# -*- coding: utf-8 -*- import math import operator from collections import defaultdict from datetime import datetime, timedelta from decimal import Decimal import numpy as np import pytest import pandas as pd import pandas.core.config as cf import pandas.util.testing as tm from pandas import ( CategoricalIndex,...
bsd-3-clause
pakodekker/oceansar
oceansar/radarsim/skim_raw.py
1
35022
#!/usr/bin/env python """ ======================================== sar_raw: SAR Raw data Generator (:mod:`srg`) ======================================== Script to compute SAR Raw data from an ocean surface. **Arguments** * -c, --config_file: Configuration file * -o, --output_file: Out...
gpl-3.0
elkingtonmcb/scikit-learn
sklearn/metrics/classification.py
95
67713
"""Metrics to assess performance on classification task given classe prediction Functions named as ``*_score`` return a scalar value to maximize: the higher the better Function named as ``*_error`` or ``*_loss`` return a scalar value to minimize: the lower the better """ # Authors: Alexandre Gramfort <alexandre.gram...
bsd-3-clause
jreback/pandas
pandas/tests/io/parser/test_common.py
1
67821
""" Tests that work on both the Python and C engines but do not have a specific classification into the other test modules. """ import codecs import csv from datetime import datetime from inspect import signature from io import BytesIO, StringIO import os import platform from urllib.error import URLError import numpy ...
bsd-3-clause
araichev/gtfstk
gtfstk/validators.py
1
46598
""" Functions about validation. """ import re import pytz import datetime as dt from typing import Optional, List, Union, TYPE_CHECKING import pycountry import numpy as np import pandas as pd from pandas import DataFrame from . import constants as cs from . import helpers as hp if TYPE_CHECKING: from .feed impor...
mit
badlogicmanpreet/nupic
external/linux32/lib/python2.6/site-packages/matplotlib/backends/backend_ps.py
69
50262
""" A PostScript backend, which can produce both PostScript .ps and .eps """ from __future__ import division import glob, math, os, shutil, sys, time def _fn_name(): return sys._getframe(1).f_code.co_name try: from hashlib import md5 except ImportError: from md5 import md5 #Deprecated in 2.5 from tempfile im...
agpl-3.0
lehinevych/Dato-Core
src/unity/python/graphlab/data_structures/sframe.py
13
196438
""" This module defines the SFrame class which provides the ability to create, access and manipulate a remote scalable dataframe object. SFrame acts similarly to pandas.DataFrame, but the data is completely immutable and is stored column wise on the GraphLab Server side. """ ''' Copyright (C) 2015 Dato, Inc. All righ...
agpl-3.0
petebachant/scipy
scipy/signal/windows.py
32
53971
"""The suite of window functions.""" from __future__ import division, print_function, absolute_import import warnings import numpy as np from scipy import special, linalg from scipy.fftpack import fft from scipy._lib.six import string_types __all__ = ['boxcar', 'triang', 'parzen', 'bohman', 'blackman', 'nuttall', ...
bsd-3-clause
arahuja/scikit-learn
sklearn/metrics/pairwise.py
13
41710
# -*- coding: utf-8 -*- # Authors: Alexandre Gramfort <alexandre.gramfort@inria.fr> # Mathieu Blondel <mathieu@mblondel.org> # Robert Layton <robertlayton@gmail.com> # Andreas Mueller <amueller@ais.uni-bonn.de> # Philippe Gervais <philippe.gervais@inria.fr> # Lars Buitinck ...
bsd-3-clause
kdebrab/pandas
pandas/core/base.py
1
40146
""" Base and utility classes for pandas objects. """ import warnings import textwrap from pandas import compat from pandas.compat import builtins import numpy as np from pandas.core.dtypes.missing import isna from pandas.core.dtypes.generic import ABCDataFrame, ABCSeries, ABCIndexClass from pandas.core.dtypes.common i...
bsd-3-clause
zfrenchee/pandas
pandas/tests/frame/test_axis_select_reindex.py
2
43348
# -*- coding: utf-8 -*- from __future__ import print_function import pytest from datetime import datetime from numpy import random import numpy as np from pandas.compat import lrange, lzip, u from pandas import (compat, DataFrame, Series, Index, MultiIndex, date_range, isna) import pandas as pd...
bsd-3-clause
rgommers/scipy
scipy/interpolate/interpolate.py
10
99598
__all__ = ['interp1d', 'interp2d', 'lagrange', 'PPoly', 'BPoly', 'NdPPoly', 'RegularGridInterpolator', 'interpn'] import itertools import warnings import numpy as np from numpy import (array, transpose, searchsorted, atleast_1d, atleast_2d, ravel, poly1d, asarray, intp) import scipy.spe...
bsd-3-clause
pbrod/numpy
numpy/core/code_generators/ufunc_docstrings.py
7
106598
""" Docstrings for generated ufuncs The syntax is designed to look like the function add_newdoc is being called from numpy.lib, but in this file add_newdoc puts the docstrings in a dictionary. This dictionary is used in numpy/core/code_generators/generate_umath.py to generate the docstrings for the ufuncs in numpy.co...
bsd-3-clause
keir-rex/zipline
zipline/history/history_container.py
18
33931
# # Copyright 2014 Quantopian, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in wr...
apache-2.0
giorgiop/scikit-learn
sklearn/feature_extraction/text.py
13
52040
# -*- coding: utf-8 -*- # Authors: Olivier Grisel <olivier.grisel@ensta.org> # Mathieu Blondel <mathieu@mblondel.org> # Lars Buitinck # Robert Layton <robertlayton@gmail.com> # Jochen Wersdörfer <jochen@wersdoerfer.de> # Roman Sinayev <roman.sinayev@gmail.com> # # License: B...
bsd-3-clause
jskDr/jamespy_py3
medic/kdl.py
1
53787
""" KDL - deep learning for medic """ import matplotlib.pyplot as plt import numpy as np import pandas as pd from scipy.signal import convolve2d, fftconvolve from sklearn import preprocessing, model_selection, metrics import os from keras.datasets import mnist from keras.models import Sequential from keras.layers impo...
mit
RobertABT/heightmap
build/matplotlib/lib/matplotlib/dates.py
4
42875
#!/usr/bin/env python """ Matplotlib provides sophisticated date plotting capabilities, standing on the shoulders of python :mod:`datetime`, the add-on modules :mod:`pytz` and :mod:`dateutils`. :class:`datetime` objects are converted to floating point numbers which represent time in days since 0001-01-01 UTC, plus 1. ...
mit
mjgrav2001/scikit-learn
sklearn/linear_model/coordinate_descent.py
37
74167
# Author: Alexandre Gramfort <alexandre.gramfort@inria.fr> # Fabian Pedregosa <fabian.pedregosa@inria.fr> # Olivier Grisel <olivier.grisel@ensta.org> # Gael Varoquaux <gael.varoquaux@inria.fr> # # License: BSD 3 clause import sys import warnings from abc import ABCMeta, abstractmethod import n...
bsd-3-clause
pyrrho314/recipesystem
trunk/gempy/adlibrary/extract.py
1
37277
#! /usr/bin/env python import sys, os import time import numpy as np from matplotlib import pyplot as pl import pyfits as pf from astrodata import AstroData, new_pyfits_version from astrodata import Lookups from gempy.library import gfit from gempy.adlibrary import segmentation as seg # Load the timestamp keyword d...
mpl-2.0
aarshayj/easyML
easyML/models_classification.py
1
59771
##################################################################### ##### IMPORT STANDARD MODULES ##################################################################### #Python 3 support: from __future__ import absolute_import, division from __future__ import print_function, unicode_literals import pandas as p...
bsd-3-clause
ryandougherty/mwa-capstone
MWA_Tools/build/matplotlib/lib/matplotlib/mathtext.py
1
108907
r""" :mod:`~matplotlib.mathtext` is a module for parsing a subset of the TeX math syntax and drawing them to a matplotlib backend. For a tutorial of its usage see :ref:`mathtext-tutorial`. This document is primarily concerned with implementation details. The module uses pyparsing_ to parse the TeX expression. .. _p...
gpl-2.0
afronski/playground-notes
introduction-to-big-data-with-apache-spark/solutions/lab2_apache_log_student.py
1
38489
# coding: utf-8 # version 1.0.1 # #![Spark Logo](http://spark-mooc.github.io/web-assets/images/ta_Spark-logo-small.png) + ![Python Logo](http://spark-mooc.github.io/web-assets/images/python-logo-master-v3-TM-flattened_small.png) # # **Web Server Log Analysis with Apache Spark** # # ####This lab will demonstrate how...
mit
amolkahat/pandas
pandas/core/frame.py
1
293955
# pylint: disable=E1101 # pylint: disable=W0212,W0703,W0622 """ DataFrame --------- An efficient 2D container for potentially mixed-type time series or other labeled data series. Similar to its R counterpart, data.frame, except providing automatic data alignment and a host of useful data manipulation methods having to...
bsd-3-clause
sfeeney/neuRRaLy
optimize_architecture.py
1
32631
import numpy as np import numpy.random as npr import astropy.stats as aps import astropy.io.fits as apf import matplotlib matplotlib.use('Agg') import matplotlib.pyplot as mp import subprocess as sp import scipy.stats as ss import scipy.signal as si import matplotlib.cm as mpcm import matplotlib.colors as mpc import sk...
mit
toobaz/pandas
pandas/io/html.py
1
34063
""":mod:`pandas.io.html` is a module containing functionality for dealing with HTML IO. """ from collections import abc import numbers import os import re from pandas.compat import raise_with_traceback from pandas.compat._optional import import_optional_dependency from pandas.errors import AbstractMethodError, Empty...
bsd-3-clause
jmetzen/scikit-learn
sklearn/model_selection/tests/test_search.py
20
30855
"""Test the search module""" from collections import Iterable, Sized from sklearn.externals.six.moves import cStringIO as StringIO from sklearn.externals.six.moves import xrange from itertools import chain, product import pickle import sys import numpy as np import scipy.sparse as sp from sklearn.utils.fixes import ...
bsd-3-clause
mr-perry/SHARAD_Coverage
code/SHARAD_Coverage_func.py
1
64354
#!/usr/bin/env python3.4 # # Import necessary libraries, module, etc # import sys, os, socket, argparse, time import shapefile import MySQLdb as SQL# MySQL Interface Library import _mysql_exceptions import numpy as np import scipy.interpolate import scipy.ndimage import matplotlib as mpl mpl.use('Agg') import matplotli...
gpl-3.0