mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 22:11:54 +08:00
15 lines
470 B
Python
15 lines
470 B
Python
from django.db.models.aggregates import Aggregate
|
|
|
|
class StatAggregate(Aggregate): ...
|
|
class Corr(StatAggregate): ...
|
|
class CovarPop(StatAggregate): ...
|
|
class RegrAvgX(StatAggregate): ...
|
|
class RegrAvgY(StatAggregate): ...
|
|
class RegrCount(StatAggregate): ...
|
|
class RegrIntercept(StatAggregate): ...
|
|
class RegrR2(StatAggregate): ...
|
|
class RegrSlope(StatAggregate): ...
|
|
class RegrSXX(StatAggregate): ...
|
|
class RegrSXY(StatAggregate): ...
|
|
class RegrSYY(StatAggregate): ...
|