Skip to content
View aligilbert's full-sized avatar

Block or report aligilbert

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
aligilbert/README.md
  • 👋 Hi, I’m Ali Gilbert
  • 😄 This is where I keep my code and projects. Feel free to look around and contact me if you have questions.
  • Wlecome to my GitHub profile :) Although I hold a secondary mathematics education degree but that doesn't stop me exploring other fields and learn what I can.
  • 👀 I’m interested in telling stories with data...
  • 🌱 I’m currently learning more about creating products with artificial intelligence...
  • 💞️ I’m looking to collaborate on various business activities like product design and marketing ...
  • 📫 find me on LinkedIn! ...

Pinned Loading

  1. hr_attrition hr_attrition Public

  2. sql sql Public

  3. Insert Figure: Unofficial Poster Tem... Insert Figure: Unofficial Poster Template for University of Oxford
    1
    \begin{figure}
    2
          \centering
    3
          \begin{tikzpicture}
    4
            \begin{axis}[
    5
                scale only axis,
  4. skimage.measure.label skimage.measure.label
    1
    seas_mask = (elevation < sea_level).astype(int)
    2
    sea_labels = skimage.measure.label(seas_mask, connectivity=1) # try plotting this with matplotlib, useful
    3
    sea_nos, sea_sizes = np.unique(sea_labels, return_counts=True)
    4
    sea_nos, sea_sizes = sea_nos[1:], sea_sizes[1:] # remove land, which has label 0
    5
    seas = zip(sea_sizes, sea_nos)[::-1] # sort, largest size first