Marco Edward Gorelli
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee
    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Versions and GitHub Sync Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee
  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       owned this note    owned this note      
    Published Linked with GitHub
    Subscribed
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    Subscribe
    # Default index ## TL;DR The proposal is to have an option `mode.no_default_index`, in which: - by default, DataFrames will be created without an Index - users will never end up with an index unless they ask for one (https://github.com/pandas-dev/pandas/issues/49069) ```python In [3]: with pd.option_context('mode.no_default_index', True): ...: df = pd.DataFrame({'a': [1, 2, 3], 'b': [4, 5, 6]}) ...: In [4]: df Out[4]: a b 1 4 2 5 3 6 ``` ## Why? The Index can be a source of confusion and frustration for pandas users. For example, let's consider the inputs ```python In [37]: ser1 = df.groupby('sender')['amount'].sum() In [38]: ser2 = df.groupby('receiver')['amount'].sum() In [39]: ser1 Out[39]: sender 1 10 2 15 3 20 5 25 Name: amount, dtype: int64 In [40]: ser2 Out[40]: receiver 1 10 2 15 3 20 4 25 Name: amount, dtype: int64 ``` . Then: - it can be unexpected that summing `Series` with the same length (but different indices) produces `NaN`s in the result ( https://stackoverflow.com/q/66094702/4451315): ```python In [41]: ser1 + ser2 Out[41]: 1 20.0 2 30.0 3 40.0 4 NaN 5 NaN Name: amount, dtype: float64 ``` - concatenation, even with `ignore_index=True`, still aligns on the index (https://github.com/pandas-dev/pandas/issues/25349): ```python In [42]: pd.concat([ser1, ser2], axis=1, ignore_index=True) Out[42]: 0 1 1 10.0 10.0 2 15.0 15.0 3 20.0 20.0 5 25.0 NaN 4 NaN 25.0 ``` - it can be frustrating to have to repeatedly call `.reset_index()` (https://twitter.com/chowthedog/status/1559946277315641345): ```python In [45]: df.value_counts(['sender', 'receiver']).reset_index().rename(columns={0: 'count'}) Out[45]: sender receiver count 0 1 1 1 1 2 2 1 2 3 3 1 3 5 4 1 ``` With this mode enabled, two major changes would happen: - by default, a DataFrame would be created without an Index; - nobody would get an index unless they ask for one. This would involve changing the default `as_index` option in `groupby`, and allowing for `value_counts` to not set an index. With this option enabled, users who don't want to worry about indices could safely ignore them. ## How? ### NoIndex DataFrame A DataFrame without an index would have an index which would behave like a RangeIndex, except for the following differences: - `name` could only be `None`; - `start` could only be `0`, `step` `1`; - when appending an extra element, the new `Index` should still be `NoIndex`; - when slicing, one should still get a `NoIndex`; - when printing a DataFrame, the row labels should be hidden. - two no-index objects shouldn't be aligned. Either they're the same length, or pandas raises; - aligning a no-index object with one which has an index will raise, always; - columns would not be allowed to be `NoIndex` (so `transpose` would need some adjustments); - `insert` and `delete` should raise. In particular, `.drop` with `axis=0` would aways raise; - arithmetic operations should probably all raise; ### Don't give people an index unless they ask for one Some pandas methods create an Index by default. This can sometimes be opted out of (e.g. with `as_index=False` in `.groupby`), but other times there is no choice but to call `reset_index` after the operation (e.g. with `.pivot_table` and `.value_counts`). A couple of solutions come to mind: - add `as_index` options to these methods, whose default could be `False` under this option; - in this option, the behaviour of these methods would change and no index would be introduced. The second would keep API size down, whilst the first one would give the most flexibility to users. I'd be more inclined towards the former. ### How to ask for an index? It should be fine to do `df.reset_index().set_index('index')`, no need to add a new method. ## Downstream libraries ### seaborn Seaborn makes extensive use of label-based indexing, and so NoIndex DataFrames would break it: ``` In [1]: df = pd.DataFrame({'a': [1, 1, 2], 'b': [1, 3, 4]}) In [2]: import seaborn as sns In [3]: sns.lineplot(df) NotImplementedError: Can't reindex a DataFrame without an index. First, give it an index. ``` Even if `df` had an Index, `seaborn.lineplot` would still error because internally it creates new DataFrames (which now wouldn't have an index) and then it would call things that wouldn't work on them, such as `data.loc[[]]`. This would need some working out. ## Why not have `.index` be None, rather than a NoIndex? `.index` methods are quite common to call, e.g. https://github.com/pandas-dev/pandas/blob/dbb2adc1f353d9b0835901c274cbe0d2f5a5664f/pandas/core/series.py#L877 in ```python ser = Series([1,2,3]) breakpoint() ser.loc[ser>1] ``` ## Roadmap - how to make this change? In pandas 2.x.0, introduce the `mode.no_default_index` option. It's unlikely that this could ever be made the default, but it could be made the default in a separate namespace (which would try to be compliant with the DataFrame standards API). ## Resources pandas issue: https://github.com/pandas-dev/pandas/issues/48880

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully