You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The only required field in this case is the machine_source, we will go over each variable in a second. The function will return a pandas data frame that looks like the following:
This is the name of the machine that you are trying to grab the schema of. This will also work with it's display name or source_clean. This is the only required parameter for this function.
34
+
35
+
#### types
36
+
This is an optional parameter and is a list of strings. If this is set the function will only return colomns that match the types given. For example if we were to pass ['string'] as our types parameter in the previous example we would instead have returned:
This is an optional parameter and is a boolean. There are a few fields we have set to be hiddden from our ui in our application and by defualt these are also hidden from the return in this function if set to True we will also return these fields.
44
+
45
+
#### return_mtype
46
+
This is an optional parameter and is a boolean. If set to True this will instead of returning just the pandas dataframe will return a Tupple with a string that is the machine type of the machine_soure for example:
The only required field in this case is the machine_type, we will go over each variable in a second. The function will return a pandas list that looks like the following:
This is the name of the machine type that you are trying to grab the fields of. This is the only required parameter for this function.
19
+
20
+
#### types
21
+
This is an optional parameter and is a list of strings. If this is set the function will only return colomns that match the types given. For example if we were to pass ['string'] as our types parameter in the previous example we would instead have returned:
This is an optional parameter and is a boolean. There are a few fields we have set to be hiddden from our ui in our application and by defualt these are also hidden from the return in this function if set to True we will also return these fields.
0 commit comments