import pandas as pd
import numpy as np
#PyData Berlin Program, 2014
Time | Beginner/Intermediate Tutorial | Intermediate/Advanced Tutorial |
---|---|---|
12:00-12:45 | Registration | Registration |
-- -- | -- -- -- -- | -- -- -- -- |
12:45-14:05 | Frank Kaufer (bakdata) | Bryan Van De Ven (Continuum Analytics) |
Python and Big Data Framework | Interactive Plots using Bokeh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#---------------------------------------------------------------------------------------- | |
# model.py | |
#---------------------------------------------------------------------------------------- | |
from django.db import models | |
from numpy.random import random_sample | |
class CustomModel(models.Model): | |
# Put your fields here | |
def get_data(self): |
NewerOlder