Python
How to check a function profile in detail using profiler
profiling and timing code: link %load_ext line_profilerpredicted = predict(pandas_df) #put the function to get profile from%prun predict(pandas_df)
How to test running time of a function
import time start_time = time.time()predicted = class.predict(pandas_df) #this include the function to testprint((time.time() – start_time))
How to rename columns for pandas dataframe
rename a pandas dataframe with names from ‘0’ to ‘100’: pd_data_frame.columns = [str(_) for _ in range(99)]
Spyder did not work any more from Anaconda (02/18/2017). Here is the solution.
My spyder did not work any more from Anaconda. Here is the solution based on this post. Open your Terminal and use the command below. (there is a file called .spyder or something like this. This file might be broken. So we can rename it first, then open spyder from Anaconda to generate a new … Read more