Git Product home page Git Product logo

python_data_products_workshop's People

Contributors

acivitillo avatar chriscreates avatar chrisgalk avatar elubik avatar lexi33 avatar rafalroman avatar tomashhawk avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

python_data_products_workshop's Issues

airly_sensors feedback

Here is some feedback I have by checking out your latest code:

  • you can remove the files folder and move the files 1 folder up
  • you don't need classes for this exercise. Using classes will make the code hard to follow
  • move the datafiles in the data folder (root of this repo)
  • please remove the notebook folder and move the files 2 folders up
  • use copy statement of postgres, you'll need this eventually so better start now

interactive charts

Code discussed during the call.

To do: we need to figure out how to display Altair chart inside a ipywidget widget.

import ipywidgets as widgets
from IPython import display

class UI():
    
    def __init__(self):
        self.label = widgets.Label('Build Your Subquery')
        self.dd = widgets.Dropdown(value="hello", options=["hello", "goodbye"])
        self.dd.observe(self.callback)
        self.button = widgets.Button(description="Get Columns")
        self.out = widgets.Output()
        self.output = widgets.VBox([self.label, self.dd, self.button])
        self.button.on_click(self._btn_demo)

    def callback(self, change):
        self.label.value = str(change.owner.value)
        
    def _btn_demo(self, button):
        self.label.value = "you just pushed the button"

UI().output

project feedback

@rafalroman could you do:

  • project name: airly_sensors
  • please add project idea in project_ideas
  • rename folder rafalr to project_submissions
  • Folder structure should be project_submissions -> airly_sensors -> files/notebook
  • Consider not using class for now in your python workflow
  • Consider add some documentation cells in the jupyter notebook

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.