I have a pandas or pyspark dataframe df
where I want to run an expectation against.
I already have my dataframe in memory. How can I convert my dataframe to a great_expectations dataset?
so that i can do for example:
df.expect_column_to_exist("my_column")
for pandas:
or
for pyspark:
now you can run your expectation