Giter VIP home page Giter VIP logo

data-analytics-assignment-appingway's Introduction

Data-Analytics-Assignment-Appingway

This is a repository for the data analytics internship by Appingway

Python:

    1. Given two lists L1 = ['a', 'b', 'c'], L2 = ['b', 'd'], find common elements, 
    find elements present in L1 and not in L2?
    

Program:
L1 = ['a', 'b', 'c']
L2 = ['b', 'd']
print list(set(L1) - set(L2))

Output:
['a', 'c']
     2. How many Thursdays were there between 1990 - 2000?


Program:
# Since it was a Monday on 1st January 1990 and a Sunday on 31st December 2000
from datetime import date
f_date = date(1990, 1, 1)
l_date = date(2000, 12, 31)
delta = l_date - f_date
print(delta.days/7 + 1) # we add 1 to compensate for the remainder value

Output:
574

Javascript:

    1. Given the following Javascript array:
    var data = [0, 1, 2, 'stop', 2, 0, 1, 'stop']
    write a Javascript function or expression that returns an array with just
    the zeroes removed.
    
Program:
<!DOCTYPE html>
<html>
<title>Web Page Design</title>
<script>
function removeElementsWithValue(arr, val) {
    var i = arr.length;
    while (i--) {
        if (arr[i] === val) {
            arr.splice(i, 1);
        }
    }
    return arr;
}

var data = [0, 1, 2, 'stop', 2, 0, 1, 'stop'];
removeElementsWithValue(data, 0);
document.write(data);
</script>
<body>
</body>
</html>

Output:
1,2,stop,2,1,stop

Use case 1 - National Achievement Survey

National Council of Education Research and Training conducts yearly National Achievement Survey. We have provided the data of Class VIII students from 2014.

File: “appingway-usecase-nas.7z”

Questions to answer:

1. What influences students performance the most?
Answer: Please refer to the Use case 1- Question 1 folder in this repository for the solution.
2. How do boys and girls perform across states?
Answer: Please refer to the Use case 1- Question 2 folder in this repository for the solution.
3. Do students from South Indian states really excel at Math and Science?
Answer: Please refer to the Use case 1- Question 3 folder in this repository for the solution.

data-analytics-assignment-appingway's People

Contributors

vishesh51 avatar

Watchers

James Cloos avatar  avatar

data-analytics-assignment-appingway's Issues

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.