SQL: Select a random sample June 14, 2021 less than 1 minute read To pick a random subsample of 1,000 rows from a table: select t.* from table t order by rand() limit 1000 ; Share on Twitter Facebook LinkedIn Previous Next Leave a comment
Why You’re Not Getting Value from Your Data Science May 16, 2023 1 minute read If companies want to get value from their data, they need to focus on accelerating human understanding of data, scaling the number of modeling questions they...
Pandas: Display DataFrames side by side May 3, 2023 less than 1 minute read Using html in a Jupyter Notebook
Pandas: Transforming two DataFrame columns into a dictionary May 3, 2023 less than 1 minute read Using the zip command
Leave a comment