Skip to content

Commit a9b9570

Browse files
DEV: Create python class for covariate imports (#237)
1 parent fe2db4c commit a9b9570

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

python/varspark/covariatesource.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import struct
2+
import pandas as pd
3+
from typedecorator import params, Nullable
4+
5+
class CovariateSource(object):
6+
def __init__(self, _jvm, _vs_api, _jsql, sql, _jcs):
7+
self._jcs = _jcs
8+
self._jvm = _jvm
9+
self._vs_api = _vs_api
10+
self._jsql = _jsql
11+
self.sql = sql

0 commit comments

Comments
 (0)