Other articles


  1. Data Visualization using Tableau

    Titanic Data Visualization with Tableau-Akanksha Goel

    Tableau links

    Before Feedback- https://public.tableau.com/profile/akanksha005#!/vizhome/TitanicDataVisualisation/Story1 After Feedback- https://public.tableau.com/profile/akanksha005#!/vizhome/TitanicDatasetVisualisationafter_feedback/Story1?publish=yes

    Summary

    The largest passenger liner in service at the time, Titanic had an estimated 2,224 people on …

    read more
  2. Enron Fraud Identification

    Identify Fraud From Enron Email Dataset

    In 2000, Enron was one of the largest companies in the United States in energy trading and was named as 'America's most innovative company'. By 2002, it had collapsed into bankruptcy due to widespread corporate fraud. In the resulting Federal investigation, a significant amount …

    read more
  3. OpenStreetMap Data Case Study

    OpenStreetMap Data Case Study

    Map Area

    Melbourne,Australia (9,990.5 km2 )
    • https://www.openstreetmap.org/node/21579127#map=11/-37.8139/144.9632
    • https://mapzen.com/data/metro-extracts/metro/melbourne_australia/

    Chose this city randomely having metro extract greater than 50 Mb

    Problems Encountered in Map Area(sample.osm)

    • Over …

    read more
  4. Csv in Python

    Load Data from CSVs

    import pandas as pd
    
    daily_engagement=pd.read_csv('daily_engagement_full.csv')
    
    len(daily_engagement['acct'].unique())
    
    1237
    
    import unicodecsv
    
    ## Longer version of code (replaced with shorter, equivalent version below)
    
    # enrollments = []
    # f = open('enrollments.csv', 'rb')
    # reader = unicodecsv.DictReader(f)
    # for row in reader:
    #     enrollments.append(row)
    # f.close()
    def …
    read more
  5. Titanic Dataset

    Titanic Dataset

    Question

    • How different variables are dependent on no of people survived ?
    • What is the highest age who has survived?
    • How many males and females survived from this accident?
    • what is the percentage of people survived?
    #Now fetching the titanic data using pandas 
    import pandas as pd
    
    titanic_data=pd …
    read more

links

social