Code Monkey home page Code Monkey logo

python-business's People

Contributors

davis68 avatar erinbecker avatar phi-li avatar professorbrunner avatar tacnayn avatar tracykteal avatar zllu2 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

python-business's Issues

practice answer incorrect

Lesson 5: working with tabular data (another name to distinguish from lesson 3)

Merge soda and inv tables, call it inv_soda.

Not all kinds of soda will appear in the invoice (as some were never sold). If we want to keep everything in the soda dataframe, what kind of join should we use?

current answer:

inv_soda = inv.merge(soda, how="left", right_on="Item_id", left_on="Item_id")

Left join will leave you all invoices. Still won't have records about the soda never sold. Should be outer join.

inv_soda = inv.merge(soda, how="outer", right_on="Item_id", left_on="Item_id")

This line of code won't work

Lesson 3: Working with Tabular data

soda[soda["Bottle_Cost"]<= 3]["Item_Description"]

Because we have set "Item_Description" as the index before, this line won't work.

Mathjax formatting

Hi,

Reviewing this lesson - great content! I've got a question on the formatting of equations: github pages doesn't render MathJax (unlike notebooks), so the lessons' equations are all raw $dollasign$-delimited. It's a little hard to read at times.

Is it worth keeping simple math (e.g. formula references) in plaintext?

I'll post a PR for one lesson to demo.

Thanks!

switch to Fisher's exact test

There should be support for an optional(?) module using Fisher's exact test when introducing statistics to students who don't have a strong stats background.

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.