Question: Can someone help with thses python errors? Here's my code: Wraps a CSV dataset class DataSetCSV ( DataSet ) : def _ _ init _

Can someone help with thses python errors? Here's my code: Wraps a CSV dataset class DataSetCSV(DataSet): def __init__(self, data:List[List[str]])-> None: self.data = data def get_type(self)-> str: return 'csv' # A list of all the datasets we have loaded datasets:List[DataSet]=[] # Converts a string to a number def to_number(s:str)-> float: s = s.strip() if s =='' or s =='?': return np.nan return float(s) # Returns true iff s represents a number def is_number(s:str)-> bool: try:

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!