Skip to content

Commit

Permalink
DEV: Create python class for covariate imports (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
NickEdwards7502 committed Sep 13, 2024
1 parent fe2db4c commit a9b9570
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions python/varspark/covariatesource.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import struct
import pandas as pd
from typedecorator import params, Nullable

class CovariateSource(object):
def __init__(self, _jvm, _vs_api, _jsql, sql, _jcs):
self._jcs = _jcs
self._jvm = _jvm
self._vs_api = _vs_api
self._jsql = _jsql
self.sql = sql

0 comments on commit a9b9570

Please sign in to comment.