Skip to content
This repository was archived by the owner on Feb 1, 2023. It is now read-only.

Commit 737b21c

Browse files
author
Matthias Koeppe
committed
src/sage/stats/r.py: Mark all 2 doctests in this file as # optional - rpy2
1 parent dbdf084 commit 737b21c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sage/stats/r.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
TESTS::
55
6-
sage: import rpy2
6+
sage: import rpy2 # optional - rpy2
77
"""
88

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

0 commit comments

Comments
 (0)