pydatatable
by Selva Prabhakaran | Posted on August 31, 2019
101 Python datatable Exercises (pydatatable)

1. How to import datatable package and check the version?
2. How to create a datatable Frame from a list, numpy array, pandas dataframe?

3. How to import csv file as a pydatatable Frame?

4. How to read first 5 rows of pydatatable Frame ?

5. How to add new column in pydatatable Frame from a list?

6. How to do addition of existing columns to get a new column in pydatatable Frame?
7. How to get the int value of a float column in a pydatatable Frame?
8. How to create a new column based on a condition in a datatable Frame?
9. How to left join two datatable Frames?
10. How to rename a column in a pydatatable Frame?
11. How to import every 50th row from a csv file to create a datatable Frame?
12. How to change column values when importing csv to a Python datatable Frame?
13. How to change value at particular row and column in a Python datatable Frame?
14. How to delete specific cell, row, column, row per condition in a datatable Frame?
15. How to convert datatable Frame to pandas, numpy, dictionary, list, tuples, csv files?
16. How to get data types of all the columns in the datatable Frame?
17. How to get summary stats of each column in datatable Frame?
18. How to get the column stats of particular column of the datatable Frame?
19. How to apply group by functions in datatable Frame?
20. How to arrange datatabe Frame in ascending order by column value?
21. How to arrange datatabe Frame in descending order by column value?
22. How to repeat(append) the same data in datatable Frame?
23. How to replace string with another string in entire datatable Frame?
24. How to extract the details of a particular cell with given criterion??
25. How to rename a specific columns in a dataframe?
26. How to count NA values in every column of a datatable Frame?
27. How to get a specific column from a datatable Frame as a datatable Frame instead of a series?
28. How to reverse the order of columns of a datatable Frame?
29. How to format or suppress scientific notations in Python datatable Frame?
30. How to filter every nth row in a pydatatable?
31. How to reverse the rows of a python datatable Frame?
32. How to find out which column contains the highest number of row-wise maximum values?
33. How to normalize all columns in a dataframe?
34. How to compute grouped mean on datatable Frame and keep the grouped column as another column?
35. How to join two datatable Frames by 2 columns?
36. How to create leads (column shifted up by 1 row) of a column in a datatable Frame?
Machine Learning Exercise
36. How to use FTRL Model to calculate the probability of a person having diabetes?
Last updated
