svy 0.0.3a0__cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of svy might be problematic. Click here for more details.
- svy-0.0.3a0.dist-info/METADATA +31 -0
- svy-0.0.3a0.dist-info/RECORD +7 -0
- svy-0.0.3a0.dist-info/WHEEL +7 -0
- svy-0.0.3a0.dist-info/entry_points.txt +2 -0
- svy-0.0.3a0.dist-info/top_level.txt +1 -0
- svy.cpython-313-x86_64-linux-gnu.so +0 -0
- svy.pyi +104 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: svy
|
|
3
|
+
Version: 0.0.3a0
|
|
4
|
+
Summary: End-to-end surveys: design, sample, analyze, report.
|
|
5
|
+
Author: Mamadou S Diallo
|
|
6
|
+
Author-email: Mamadou S Diallo <msdiallo@samplics.org>
|
|
7
|
+
Keywords: sampling,sample,weighting,estimation,survey
|
|
8
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Topic :: Scientific/Engineering
|
|
15
|
+
Requires-Python: >=3.11
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
Requires-Dist: httpx>=0.28.1
|
|
18
|
+
Requires-Dist: numpy>=2.3
|
|
19
|
+
Requires-Dist: msgspec>=0.19.0
|
|
20
|
+
Requires-Dist: packaging>=21
|
|
21
|
+
Requires-Dist: patsy
|
|
22
|
+
Requires-Dist: polars[pandas,pyarrow]>=1.33.1
|
|
23
|
+
Requires-Dist: scipy>=1.16.0
|
|
24
|
+
Requires-Dist: svy-io
|
|
25
|
+
Provides-Extra: report
|
|
26
|
+
Requires-Dist: rich>=14.1; extra == "report"
|
|
27
|
+
Requires-Dist: great-tables>=0.18; extra == "report"
|
|
28
|
+
Dynamic: author
|
|
29
|
+
Dynamic: requires-python
|
|
30
|
+
|
|
31
|
+
# svy: The Python toolkit for modern, end-to-end survey research.
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
svy.cpython-313-x86_64-linux-gnu.so,sha256=7gXTTz4qjDrh2v7Q9q2DBxCvfO4newbdQtejKgHb5n8,8890000
|
|
2
|
+
svy.pyi,sha256=wqh_0-S2Rwy2Bt024pkj-_UgGUKAjRwrwGVhp_MB8m8,3559
|
|
3
|
+
svy-0.0.3a0.dist-info/METADATA,sha256=wQrYqMPJP8lztCUE-1ceFimt595h_SG88cZ1GUDl9iM,1130
|
|
4
|
+
svy-0.0.3a0.dist-info/WHEEL,sha256=aHZ8cLhpatjQDn96l4Uhfyb82-vVOBOkLY36ocpNm74,185
|
|
5
|
+
svy-0.0.3a0.dist-info/entry_points.txt,sha256=IObkdwEMVwhU2xmTN-r4bk4s04ZrmMId47gz74Ert-g,42
|
|
6
|
+
svy-0.0.3a0.dist-info/top_level.txt,sha256=mGEerPDvPzZwfrSZqaI5GcIwlMeoK7Aj6ei0WmxhF_8,4
|
|
7
|
+
svy-0.0.3a0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
svy
|
|
Binary file
|
svy.pyi
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
# This file was generated by Nuitka
|
|
2
|
+
|
|
3
|
+
# Stubs included by default
|
|
4
|
+
from __future__ import annotations
|
|
5
|
+
from __future__ import annotations
|
|
6
|
+
from svy.core.containers import ChiSquare, FDist
|
|
7
|
+
from svy.core.describe import DescribeResult
|
|
8
|
+
from svy.core.enumerations import CaseStyle, EstMethod, FitMethod, LetterCase, MeasurementType, ModelType, OnePropSizeMethod, PPSMethod, PopParam, QuantileMethod, SingletonMethod, TableType, TableUnits
|
|
9
|
+
from svy.core.estimate import Estimate, ParamEst
|
|
10
|
+
from svy.core.expr import col, lit, when
|
|
11
|
+
from svy.core.io import create_from_sas, create_from_spss, create_from_stata, read_sas, read_spss, read_stata
|
|
12
|
+
from svy.core.sample import Design, Sample
|
|
13
|
+
from svy.core.size import SampSize, SampSizeConfigs, Target, TargetMean, TargetProp, TargetTwoMeans, TargetTwoProps
|
|
14
|
+
from svy.core.table import CellEst, Table, TableStats
|
|
15
|
+
from svy.core.ttest import TTestOneGroup, TTestTwoGroups
|
|
16
|
+
from svy.core.types import Category, DF, DT, Number
|
|
17
|
+
from svy.datasets.dataset import load_dataset
|
|
18
|
+
from svy.errors import CertaintyError, DimensionError, MethodError, ProbError, SinglePSUError, SvyError
|
|
19
|
+
from svy.utils import enable_debug, enable_logging, temporary_log_level
|
|
20
|
+
import logging
|
|
21
|
+
import os
|
|
22
|
+
import sys
|
|
23
|
+
|
|
24
|
+
__all__ = ['CaseStyle', 'FitMethod', 'LetterCase', 'MeasurementType', 'ModelType', 'PopParam', 'QuantileMethod', 'EstMethod', 'PPSMethod', 'SingletonMethod', 'OnePropSizeMethod', 'CertaintyError', 'DimensionError', 'MethodError', 'ProbError', 'SvyError', 'SinglePSUError', 'CellEst', 'ChiSquare', 'DescribeResult', 'Design', 'Estimate', 'FDist', 'ParamEst', 'Sample', 'SampSize', 'SampSizeConfigs', 'Table', 'TableStats', 'TableType', 'TableUnits', 'Target', 'TargetMean', 'TargetProp', 'TargetTwoProps', 'TargetTwoMeans', 'TTestOneGroup', 'TTestTwoGroups', 'create_from_spss', 'create_from_sas', 'create_from_stata', 'load_dataset', 'read_stata', 'read_spss', 'read_sas', 'Category', 'DF', 'DT', 'Number', 'col', 'lit', 'when', 'enable_logging', 'enable_debug', 'temporary_log_level']
|
|
25
|
+
__version__ = '0.0.3a'
|
|
26
|
+
def _maybe_install_rich() -> None:
|
|
27
|
+
...
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
__name__ = ...
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
# Modules used internally, to allow implicit dependencies to be seen:
|
|
35
|
+
import os
|
|
36
|
+
import __future__
|
|
37
|
+
import logging
|
|
38
|
+
import sys
|
|
39
|
+
import svy.errors.CertaintyError
|
|
40
|
+
import svy.errors.DimensionError
|
|
41
|
+
import svy.errors.MethodError
|
|
42
|
+
import svy.errors.ProbError
|
|
43
|
+
import svy.errors.SinglePSUError
|
|
44
|
+
import svy.errors.SvyError
|
|
45
|
+
import svy.utils.enable_debug
|
|
46
|
+
import svy.utils.enable_logging
|
|
47
|
+
import svy.utils.temporary_log_level
|
|
48
|
+
import rich
|
|
49
|
+
import rich.pretty
|
|
50
|
+
import rich.traceback
|
|
51
|
+
import importlib
|
|
52
|
+
import importlib.metadata
|
|
53
|
+
import numpy
|
|
54
|
+
import polars
|
|
55
|
+
import typing
|
|
56
|
+
import msgspec
|
|
57
|
+
import datetime
|
|
58
|
+
import builtins
|
|
59
|
+
import shutil
|
|
60
|
+
import io
|
|
61
|
+
import rich.console
|
|
62
|
+
import rich.padding
|
|
63
|
+
import rich.table
|
|
64
|
+
import rich.text
|
|
65
|
+
import rich.panel
|
|
66
|
+
import msgspec.structs
|
|
67
|
+
import enum
|
|
68
|
+
import re
|
|
69
|
+
import math
|
|
70
|
+
import dataclasses
|
|
71
|
+
import time
|
|
72
|
+
import pathlib
|
|
73
|
+
import pathlib.Path
|
|
74
|
+
import svy.engine.io._read_sas
|
|
75
|
+
import svy.engine.io._read_spss
|
|
76
|
+
import svy.engine.io._read_stata
|
|
77
|
+
import svy.engine.io._write_sas
|
|
78
|
+
import svy.engine.io._write_spss
|
|
79
|
+
import svy.engine.io._write_stata
|
|
80
|
+
import threading
|
|
81
|
+
import copy
|
|
82
|
+
import numpy.typing
|
|
83
|
+
import collections
|
|
84
|
+
import collections.abc
|
|
85
|
+
import svy.errors.LabelError
|
|
86
|
+
import json
|
|
87
|
+
import tempfile
|
|
88
|
+
import httpx
|
|
89
|
+
import warnings
|
|
90
|
+
import patsy
|
|
91
|
+
import scipy
|
|
92
|
+
import scipy.stats
|
|
93
|
+
import svy_io
|
|
94
|
+
import pyarrow
|
|
95
|
+
import inspect
|
|
96
|
+
import numpy._core
|
|
97
|
+
import numpy._core.numeric
|
|
98
|
+
import textwrap
|
|
99
|
+
import _frozen_importlib_external
|
|
100
|
+
import decimal
|
|
101
|
+
import scipy.linalg
|
|
102
|
+
import contextlib
|
|
103
|
+
import rich.logging
|
|
104
|
+
import hashlib
|