This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2025-03-03 10:59:22.2|Trace|CommandQueueManager|Updating command status | |
| 2025-03-03 10:59:22.4|Trace|EventAggregator|Publishing CommandUpdatedEvent | |
| 2025-03-03 10:59:22.4|Trace|EventAggregator|CommandUpdatedEvent -> CommandController | |
| 2025-03-03 10:59:22.4|Trace|EventAggregator|CommandUpdatedEvent <- CommandController | |
| 2025-03-03 10:59:22.4|Trace|EventAggregator|Publishing CommandExecutedEvent | |
| 2025-03-03 10:59:22.4|Trace|EventAggregator|CommandExecutedEvent -> TaskManager | |
| 2025-03-03 10:59:22.4|Trace|EventAggregator|CommandExecutedEvent <- TaskManager | |
| 2025-03-03 10:59:22.4|Trace|EventAggregator|CommandExecutedEvent -> TaskController | |
| 2025-03-03 10:59:22.4|Trace|EventAggregator|CommandExecutedEvent <- TaskController | |
| 2025-03-03 10:59:22.4|Trace|CommandExecutor|DeleteLogFilesCommand <- DeleteLogFilesService [00:00:00.2557811] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " Vim will load $VIMRUNTIME/defaults.vim if the user does not have a vimrc. | |
| " This happens after /etc/vim/vimrc(.local) are loaded, so it will override | |
| " any settings in these files. | |
| " If you don't want that to happen, uncomment the below line to prevent | |
| " defaults.vim from being loaded. | |
| " let g:skip_defaults_vim = 1 | |
| " Uncomment the next line to make Vim more Vi-compatible | |
| " NOTE: debian.vim sets 'nocompatible'. Setting 'compatible' changes numerous | |
| " options, so any other options should be set AFTER setting 'compatible'. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # GET VERSION | |
| npm -v (or --version) | |
| # GET HELP | |
| npm help | |
| npm | |
| # CREATE PACKAGE.JSON | |
| npm init | |
| npm init -y (or --yes) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import matplotlib.pyplot as plt | |
| import numpy as np | |
| from matplotlib.animation import FuncAnimation | |
| plt.style.use('fast') | |
| var5 = [] | |
| var6 = [] | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AAPL_returns=daily_log_returns.iloc[:,0] | |
| GS_returns=daily_log_returns.iloc[:,3] | |
| return_data=pd.concat([AAPL_returns,GS_returns],axis=1)[1:] | |
| X = sm.add_constant(return_data['AAPL']) | |
| model = sm.OLS(return_data['GS'],X).fit() | |
| print(model.summary()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pd.plotting.scatter_matrix(daily_pct_change,diagonal='kde',figsize=(15,15),alpha=0.1) | |
| plt.show() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| print(Zomato.sort_values(['Name','Cost'],ascending=[1,1])) | |
| New_Zomato=Zomato.sort_values(['Name','Cost'],ascending=[1,1]) | |
| print(New_Zomato.reset_index()) | |
| print(New_Zomato.reset_index(drop=True)) | |
| print(Zomato) |