File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -579,8 +579,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
579
579
MSG=' Partially validate docstrings (EX02)' ; echo $MSG
580
580
$BASE_DIR /scripts/validate_docstrings.py --format=actions --errors=EX02 --ignore_functions \
581
581
pandas.DataFrame.plot.line \
582
- pandas.DataFrame.std \
583
- pandas.DataFrame.var \
584
582
pandas.Index.factorize \
585
583
pandas.Period.strftime \
586
584
pandas.Series.factorize \
@@ -590,8 +588,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
590
588
pandas.Series.sparse.density \
591
589
pandas.Series.sparse.npoints \
592
590
pandas.Series.sparse.sp_values \
593
- pandas.Series.std \
594
- pandas.Series.var \
595
591
pandas.Timestamp.fromtimestamp \
596
592
pandas.api.types.infer_dtype \
597
593
pandas.api.types.is_bool_dtype \
Original file line number Diff line number Diff line change @@ -11872,12 +11872,14 @@ def _doc_params(cls):
11872
11872
>>> df.std()
11873
11873
age 18.786076
11874
11874
height 0.237417
11875
+ dtype: float64
11875
11876
11876
11877
Alternatively, `ddof=0` can be set to normalize by N instead of N-1:
11877
11878
11878
11879
>>> df.std(ddof=0)
11879
11880
age 16.269219
11880
- height 0.205609"""
11881
+ height 0.205609
11882
+ dtype: float64"""
11881
11883
11882
11884
_var_examples = """
11883
11885
@@ -11898,12 +11900,14 @@ def _doc_params(cls):
11898
11900
>>> df.var()
11899
11901
age 352.916667
11900
11902
height 0.056367
11903
+ dtype: float64
11901
11904
11902
11905
Alternatively, ``ddof=0`` can be set to normalize by N instead of N-1:
11903
11906
11904
11907
>>> df.var(ddof=0)
11905
11908
age 264.687500
11906
- height 0.042275"""
11909
+ height 0.042275
11910
+ dtype: float64"""
11907
11911
11908
11912
_bool_doc = """
11909
11913
{desc}
You can’t perform that action at this time.
0 commit comments