Gourav Kumar
Gourav Kumar
Hi. Any update on this? Do I need to make any changes?
I have taken this up and hope to complete it by next week. If anyone else is interested, you can look at [my fork of the repo](https://github.com/gouravkr/cleverdict/blob/master/cleverdict/cleverdict.py#L1052). I have a...
Created a pull request for this https://github.com/PFython/cleverdict/pull/33
This can be achieved using built-in Pandas functions. To convert DataFrame to CleverDict ``` >>> df.to_dict(orient='index', into=CleverDict()) ``` To convert CleverDict to DataFrame ``` >>> pd.DataFrame.from_dict(cleverdict_data, orient='index') ``` Hence this...
While it would be a good idea to add these examples to the readme, I think there's some scope to implement better support for it. For instance, consider the following...
This feature would be useful for displaying small tables. I have a few large tables and in my initial view, I show a summary with just 2 or 3 columns...