Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
src/sage/stats/r.py: Mark all 2 doctests in this file as # optional -…
Browse files Browse the repository at this point in the history
… rpy2
  • Loading branch information
mkoeppe committed Feb 18, 2021
1 parent dbdf084 commit 737b21c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/stats/r.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
TESTS::
sage: import rpy2
sage: import rpy2 # optional - rpy2
"""

#*****************************************************************************
Expand Down Expand Up @@ -39,7 +39,7 @@ def ttest(x,y,conf_level = 0.95, **kw):
Example::
sage: a, b = ttest([1,2,3,4,5],[1,2,3,3.5,5.121]); a # abs tol 1e-12
sage: a, b = ttest([1,2,3,4,5],[1,2,3,3.5,5.121]); a # abs tol 1e-12 # optional - rpy2
0.9410263720274274
"""
if len(x) != len(y):
Expand Down

0 comments on commit 737b21c

Please sign in to comment.