Skip to content
View ronnydw's full-sized avatar

Block or report ronnydw

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. compfinance compfinance Public

    coursera compfinace course: Some R code translated to python

    Python 2 1

  2. courses courses Public

    Forked from DataScienceSpecialization/courses

    Course materials for the Data Science Specialization: https://www.coursera.org/specialization/jhudatascience/1

    HTML

  3. data-science-projects data-science-projects Public

    Overview of some Data Science projects I've been working on

    Jupyter Notebook 1

  4. Get the S&P500 ticker symbols from W... Get the S&P500 ticker symbols from Wikipedia
    1
    library(XML)
    2
    library(RCurl)
    3
    
                  
    4
    url <- "https://en.wikipedia.org/wiki/List_of_S%26P_500_companies"
    5
    tables <- getURL(url)
  5. Read data from Google Sheet into a P... Read data from Google Sheet into a Python Pandas DataFrame. Details at http://sudarmuthu.com/blog/read-data-from-google-sheet-into-a-python-pandas-dataframe/
    1
    import gspread
    2
    import pandas
    3
    
                  
    4
    gc = gspread.login('[email protected]', 'supersecretepassword')
    5
    book = gc.open('Spreadsheet name')
  6. get-stanford-online-courses.R get-stanford-online-courses.R
    1
    library(XML)
    2
    library(RCurl)
    3
    
                  
    4
    url <- "http://online.stanford.edu/courses/allcourses"
    5
    tables <- getURL(url)