How to use:
./wordle.sh
Or try the unlimit mode:
| #Display all columns in a df.head() command | |
| pd.set_option('display.max_columns', 999) | |
| #List unique values in a DataFrame column | |
| pd.unique(df.column_name.ravel()) | |
| #Convert Series datatype to numeric, getting rid of any non-numeric values | |
| df['col'] = df['col'].astype(str).convert_objects(convert_numeric=True) | |
| #Grab DataFrame rows where column has certain values |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |