Giter VIP home page Giter VIP logo

fnsb-benchmark's People

Contributors

alanmitchell avatar conroywhitney avatar

Watchers

 avatar  avatar  avatar  avatar

fnsb-benchmark's Issues

Check for Addition and Subtraction of Pandas Series & Bad NaN Results

df.electricity + df.district_heat will produce NaNs for any rows where a NaN appears in the Series. One way to avoid this is to do:

df[['electricity', 'district_heat']].sum(axis=1)

NaNs will be treated as 0s with this method of addition, which is what we often want.

Another way, but more cumbersome:

df.electricity.fillna(0.0) + df.district_heat.fillna(0.0)

Pie Chart Readability

Fonts are too small to read. Also, maybe we can get the chart to fill more of the figure? Part of the problem is margins around the chart, but my discussion with Conroy made it sound like that may be difficult to fix.

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.