-
-
Notifications
You must be signed in to change notification settings - Fork 18.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DOC: redirect from_csv search #28075
DOC: redirect from_csv search #28075
Conversation
A web search for "DataFrame from CSV" leads to https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.from_csv.html which is currently a 404, since DataFrame.from_csv was removed. Redirect it to read_csv.
Not super familiar with this file but aren't there already redirects for |
I think those from_csv redirects were from the old API locations to the new
ones.
This is for a removed page.
…On Fri, Aug 23, 2019 at 8:05 AM William Ayd ***@***.***> wrote:
Not super familiar with this file but aren't there already redirects for
from_csv therein? Maybe just need to be updated?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#28075?email_source=notifications&email_token=AAKAOIVT5GCRF4JK5LILEF3QF7OAXA5CNFSM4ION54L2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5AE2FQ#issuecomment-524307734>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAKAOIRS3MHPB5MEUISX6VDQF7OAXANCNFSM4ION54LQ>
.
|
Cool thanks for confirming |
I assume this is for 1.0.0 but merge for whichever milestone you feel best |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think 0.25.2
makes sense. No need to wait for this.
@TomAugspurger did you want to merge this? |
I still need to check if I have the path correct first.
…On Thu, Sep 5, 2019 at 10:43 AM William Ayd ***@***.***> wrote:
@TomAugspurger <https://github.com/TomAugspurger> did you want to merge
this?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#28075?email_source=notifications&email_token=AAKAOIXI7G3GI2P2HXKILCDQIESJZA5CNFSM4ION54L2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD57TTEQ#issuecomment-528431506>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAKAOIRVR6NQH5TVY3EFPUDQIESJZANCNFSM4ION54LQ>
.
|
doc/redirects.csv
Outdated
@@ -1579,3 +1579,6 @@ generated/pandas.unique,../reference/api/pandas.unique | |||
generated/pandas.util.hash_array,../reference/api/pandas.util.hash_array | |||
generated/pandas.util.hash_pandas_object,../reference/api/pandas.util.hash_pandas_object | |||
generated/pandas.wide_to_long,../reference/api/pandas.wide_to_long | |||
|
|||
# Cached searches | |||
reference/api/pandas.DataFrame.from_csv.html,../reference/api/pandas.read_csv |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the .html
is not needed here (at leas the ones above don't have it)
I fixed the redirect, and tested locally that this works. |
A web search for "DataFrame from CSV" leads to https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.from_csv.html which is currently a 404, since DataFrame.from_csv was removed. Redirect it to read_csv. Co-authored-by: Joris Van den Bossche <jorisvandenbossche@gmail.com>
A web search for "DataFrame from CSV" leads to https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.from_csv.html which is currently a 404, since DataFrame.from_csv was removed. Redirect it to read_csv. Co-authored-by: Joris Van den Bossche <jorisvandenbossche@gmail.com>
A web search for "DataFrame from CSV" leads to https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.from_csv.html which is currently a 404, since DataFrame.from_csv was removed. Redirect it to read_csv. Co-authored-by: Joris Van den Bossche <jorisvandenbossche@gmail.com>
A web search for "DataFrame from CSV" leads to https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.from_csv.html which is currently a 404, since DataFrame.from_csv was removed. Redirect it to read_csv. Co-authored-by: Joris Van den Bossche <jorisvandenbossche@gmail.com>
A web search for "DataFrame from CSV" leads to
https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.from_csv.html
which is currently a 404, since DataFrame.from_csv was removed. Redirect
it to read_csv.
Normally we shouldn't worry about this, but I suspect this is a common search term.