Skip to content
View rpkyle's full-sized avatar
🤹‍♀️
🤹‍♀️
Block or Report

Block or report rpkyle

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
rpkyle/README.md

👋 Greetings

I'm Ryan, and I enjoy writing code and data visualization (ideally at the same time)! I contributed to various Dash-related projects while working as a developer at Plotly, including the Python, R and Julia versions of the framework. I was also the lead developer of Dash for R, which was previously available via CRAN.

I am originally from Tacoma, I lived in Montréal, and I am now in Burlington, Vermont.

I completed a B.S. in Cellular and Molecular Biology at the University of Washington, before working as a system administrator and IT manager for 7 years at the same institution. I later obtained a Master of Public Health from Emory University, and subsequently a PhD in epidemiology at McGill University. If you're interested in checking out my publications, my ORCID is 0000-0001-5829-9867 and my Google Scholar profile is linked here.

Pinned

  1. plotly/dashR plotly/dashR Public

    Create data science and AI web apps in R

    JavaScript 382 34

  2. plotly/rasterly plotly/rasterly Public archive

    Rapidly generate raster images from large datasets in R with Plotly.js

    R 48 6

  3. debbie debbie Public

    Retrieve and install binary versions of R packages for use with Debian and Ubuntu

    R 4

  4. plotly/Dash.jl plotly/Dash.jl Public

    Dash for Julia - A Julia interface to the Dash ecosystem for creating analytic web applications in Julia. No JavaScript required.

    Julia 481 41

  5. cscmisc cscmisc Public

    Miscellaneous tools for data manipulation and simulation.

    R

  6. Dash for Julia Stock Ticker Sample App Dash for Julia Stock Ticker Sample App
    1
    using Dash, DashHtmlComponents, DashCoreComponents, HTTP, CSV, Dates, Printf
    2
    
                  
    3
    r = HTTP.request("GET", "https://finance.yahoo.com/quote/AMZN/history?p=AMZN");
    4
    crumb = match(r"(?:CrumbStore\"\:\{\"crumb\":\")(.*?)(?:\")", String(r.body)).captures;
    5
    session_cookie = match(r"(?:B=)(.*?)(?:;)", HTTP.header(r, "Set-Cookie")).captures;