Alireza

Results 5 comments of Alireza

don't use ont = "ALL" for enrichGO input . i think goplot just works with : ont = "BP" ont = "CC" ont = "MF" it works for me.

While downloading a file, I encountered an issue where the download was interrupted. After restarting, the download process began again from the beginning. I revisited the website from which I...

While downloading a file, I encountered an issue where the download was interrupted. After restarting, the download process began again from the beginning. I revisited the website from which I...

use your own dataset "csv" and convert it into pkl I use this structure : import pandas as pd import pickle from gym_mtsim.metatrader.symbol import SymbolInfo df = ( pd.read_csv( 'XAU_1h_data.csv',...

use csv and convert it into pkl : import pandas as pd import pickle from gym_mtsim.metatrader.symbol import SymbolInfo df = ( pd.read_csv( 'XAU_1h_data.csv', sep=';', parse_dates=['Date'], index_col='Date' ) .sort_index() [['Open','High','Low','Close','Volume']] .tz_localize('UTC')...