Skip to main content

Utility functions

Project description

cornutils

Python package containing utility functions

Install

python3 -m pip install cornutils

Example Usage of praktika

import numpy as np
from cornutils.praktika import Data, PlotSettings, aio

x = np.array([0,2,4,6,8,10,12,14,16,18,])
y = np.array([2.8,5.2,6.8,9.6,11.2,14,15.6,17,19.8,21.4,])
delta_y = np.array([1.0,1.5,1.2,0.9,1.4,1.4,1.5,1.2,1.3,1.5,])
data = Data(x, y, sy=delta_y)

s = PlotSettings(label_x='x-label', label_y = 'y-label',label_fit='Test')

def func(beta, x):
    '''
    Function to use for estimation, beta is an array with each parameter
    '''
    y = beta[0] + beta[1] * x
    return y

aio(func, 2, data, s)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cornutils-0.2.2.tar.gz (39.2 kB view hashes)

Uploaded Source

Built Distribution

cornutils-0.2.2-py3-none-any.whl (39.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page