Edwin Ruiz

Hello! Glad to see you here. This is a collection of my personal projects made during free time.

Contact

ABOUT

Home

				
					import numpy as np
import glob



class My_dataframe(pd.DataFrame):

    def __init__(self, archivo, nombre="Estudio de aprovechamiento"):
        data=DataLoader.load_csv_files(archivo)
        super(My_dataframe, self).__init__(data)


        data = pd.read_csv('C:/Users/Owner/Downloads/data_estudio.csv')
        super(My_dataframe, self).__init__(data)

    def show(self):
        return self.__str__()

    def head_tail(self, n):
        return self.head(n).append(self.tail(n))
				
			

Contact

Copyright © 2023 All rights reserved