Skip to content
View rmaries's full-sized avatar
  • Coimbatore, India
  • 07:57 (UTC +05:30)

Block or report rmaries

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse
rmaries/README.md

Hi there 👋

Pinned Loading

  1. InvestWithMaries InvestWithMaries Public

    Repo to host my website

    HTML

  2. Open_MFD_CRM Open_MFD_CRM Public

    This is the app for individual mutual fund distributors for their client management

    Python

  3. German_Audio German_Audio Public

    To create german audio from text file.

    Jupyter Notebook

  4. learn-awesome learn-awesome Public

    Forked from ghanima/learn-awesome

    Humanity's universal skills graph. Curated lists of awesome learning resources on various topics categorized by formats, difficulty, estimated time etc.

  5. pytorch3d pytorch3d Public

    Forked from facebookresearch/pytorch3d

    PyTorch3D is FAIR's library of reusable components for deep learning with 3D data

    Python

  6. Code to separate columns Code to separate columns
    1
    filename = "data/temperatures/annual.land_ocean.90S.90N.df_1901-2000mean.dat"
    2
    full_global_temp = pd.read_table(filename, sep='\s+', names = ['Year', 'Mean Temp'], index_col = 0, parse_dates=True)
    3
    full_global_temp
    4
    ##########
    5