Exemple #1
0
 def sort(self, axis= -1, kind='quicksort', order=None):
     "(This docstring should be overwritten)"
     ndarray.sort(self, axis=axis, kind=kind, order=order)
     _cached = self._cachedinfo
     kwargs = dict(toobj=None, toord=None, tostr=None)
     if self.ndim == 1:
         kwargs.update(ischrono=True, chronidx=np.array([], dtype=int))
     _cached.update(**kwargs)
     return None
Exemple #2
0
 def sort(self, axis=-1, kind='quicksort', order=None):
     "(This docstring should be overwritten)"
     ndarray.sort(self, axis=axis, kind=kind, order=order)
     _cached = self._cachedinfo
     kwargs = dict(toobj=None, toord=None, tostr=None)
     if self.ndim == 1:
         kwargs.update(ischrono=True, chronidx=np.array([], dtype=int))
     _cached.update(**kwargs)
     return None
Exemple #3
0
'''
Created on Jul 26"," 2015

@author: puneeth
'''

from matplotlib import pyplot
import numpy
from numpy import ndarray

data = numpy.genfromtxt('../6339_Dataset_1.csv', delimiter=',', skiprows=1)
print(data)
ndarray.sort(data, order=[8])

drg = data[:, 8]
total_charges = data[:, 9]

pyplot.plot(drg, total_charges, '-')
pyplot.title('DRG_PRICE vs TOTAL_CHARGES')
pyplot.xlabel('DRG_PRICE')
pyplot.ylabel('TOTAL_CHARGES')
pyplot.show()
pyplot.clf()