GithubHelp home page GithubHelp logo

Comments (8)

 avatar commented on July 18, 2024 1

@evaristoc @SamAI-Software Thank you for the response. I think the first reply satisfies the question. I do think we can go ahead and close this issue now. Sorry for the delayed reply.

from 2016-new-coder-survey.

SamAI-Software avatar SamAI-Software commented on July 18, 2024

Visualization per country on codepen

from 2016-new-coder-survey.

georgeanderson avatar georgeanderson commented on July 18, 2024

I tried to extract salary information with the awk below. Seems to be about right.

#!/bin/awk -f

BEGIN {
  FS=","
  TOT=0
  MIN=1000000
  SUM=0
}

 /[0-9]{5,6}/ {
  for (i=1;i<NF;i++) {
    if($i ~ /^[0-9]{5,6}$/) {
      MIN = ( $i < MIN ) ? $i : MIN
      MAX = ( $i > MAX ) ? $i : MAX
      SUM += $i
      TOT++
    }
  }
}

END {
  printf("Min salary: $%.2f\n", MIN)
  printf("Max salary: $%.2f\n", MAX)
  printf("Avg salary: $%.2f\n", SUM/TOT)
}

from 2016-new-coder-survey.

evaristoc avatar evaristoc commented on July 18, 2024

@georgeanderson thanks a lot! I think that your post should be somewhere else though... Could you please find a question that better correspond to your comment and post your code there again? You can also open an issue suggesting an enhancement.

from 2016-new-coder-survey.

evaristoc avatar evaristoc commented on July 18, 2024

this could be a good question to respond

from 2016-new-coder-survey.

SamAI-Software avatar SamAI-Software commented on July 18, 2024

Can be done only by country at #2

from 2016-new-coder-survey.

evaristoc avatar evaristoc commented on July 18, 2024

@AndrsDC thanks for posting your question here. Unfortunately we don't have data about specific states. Won't you mind to either re-state your question or closing this issue otherwise?

We will keep this issue open only for this weekend if we don't get any reply from you.

Thanks!

from 2016-new-coder-survey.

krisgesling avatar krisgesling commented on July 18, 2024

Good suggestion @AndrsDC. Can't do the states but I've added aggregates of the continents. At the moment it's just displayed as a split bar but will change that to something that makes more sense for the data that it is. Pie graph maybe? Pie graph feels boring but it does the job.
http://krisgesling.github.io/FCC-Gender-Map/

from 2016-new-coder-survey.

Related Issues (20)

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.