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
Up till now, pythonwhat does not bother with 'package specific' support for testing python scripts. The pandas package, however, is extremely commonly used across a wide range of Python courses, as it is the basis package for almost any data analysis with tabular data. Currently, you can test chains of pandas calls with pythowhat, but the support is far from great. There are no elegant ways to allow for both of these solutions, for example:
df.group_by('[b]').mean()
df.group_by('b').mean()
Or for these solutions
df=pd.DataFrame({'a': [1, 2, 3]})
# select the column adf['a']
df.a
We should carefully think about additional functions we could add to the pythonwhat API to robustly check whether a student did the correct data manipulation operations. I have no idea what it could possibly look like, but the impact could be huge both in terms of CD productivity and SCT quality.
The text was updated successfully, but these errors were encountered:
Up till now,
pythonwhat
does not bother with 'package specific' support for testing python scripts. Thepandas
package, however, is extremely commonly used across a wide range of Python courses, as it is the basis package for almost any data analysis with tabular data. Currently, you can test chains of pandas calls withpythowhat
, but the support is far from great. There are no elegant ways to allow for both of these solutions, for example:Or for these solutions
We should carefully think about additional functions we could add to the pythonwhat API to robustly check whether a student did the correct data manipulation operations. I have no idea what it could possibly look like, but the impact could be huge both in terms of CD productivity and SCT quality.
The text was updated successfully, but these errors were encountered: