8000 DOC/DEPR: port pandas.rpy to rpy2 guide by jorisvandenbossche · Pull Request #10075 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

DOC/DEPR: port pandas.rpy to rpy2 guide #10075

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

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
DOC/DEPR: add link to docs in deprecation warning
  • Loading branch information
jorisvandenbossche committed May 7, 2015
commit e8791385d69fba747dfbe3b61f26f00e369a52ea
5 changes: 4 additions & 1 deletion pandas/rpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
import warnings
warnings.warn("The pandas.rpy module is deprecated and will be "
"removed in a future version. We refer to external packages "
"like rpy2, found here: http://rpy.sourceforge.net", FutureWarning)
"like rpy2. "
"\nSee here for a guide on how to port your code to rpy2: "
"http://pandas.pydata.org/pandas-docs/stable/r_interface.html",
FutureWarning)

try:
from .common import importr, r, load_data
Expand Down
0