Giter Club home page Giter Club logo

balanceddataframe's Introduction

BalancedDataFrame

balancing dataframe by duplication of one label python

To achieve that balanced dataframe we took the number of positive reviews as “max_class”, and the number of negative reviews as “min_class”, then we append the negative reviews to the end of the positive reviews and save it as a new dataframe called “balancedData” by using pandas’ .append() function.

Next, we initialize a variable called “remain” that used to keep track the remaining number of reviews, to use it in the while loop that iterates if there is any remain ( the number of the negative reviews on “balancedData” is still less than the positive) and check if it's bigger than the min_class it will take all of the negative reviews and duplicate them, then append it again to balancedData.

However, if the remain “let's say it’s equal to K” is less than min_class, it will take a random sample of size K by attaching K as a parameter for .sample() function, and then append it again to balancedData and then the loop will end because the remain is less than 1.

balanceddataframe's People

Contributors

deemmf avatar

Watchers

 avatar

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.