Python Forum
How to get memory usage and execution time of each line in python
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to get memory usage and execution time of each line in python
#1
Hi,
I have below code, and I want to get(calculate) the memory usage and execution time of each line of my code. My code is below, kindly someone help,

import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns; sns.set()
uniform_data = np.random.rand(10, 12)
ax = sns.heatmap(uniform_data, cbar_kws={'ticks': [0, 2, 4, 6, 8, 10]}, vmin=0, vmax=10) 
plt.show()

 
#Create a DataFrame
d = {'Name':['Alisa','Bobby','Cathrine','Madonna','Rocky','Sebastian','Jaqluine',
   'Rahul','David','Andrew','Ajay','Teresa'],
   'Score1':[62,47,55,74,31,77,85,63,42,32,71,57],
   'Score2':[89,87,67,55,47,72,76,79,44,92,99,69]}
 
 
df = pd.DataFrame(d)
col_mean=df.mean()
col_std=df.std()
get_disc=df.describe()
Reply


Messages In This Thread
How to get memory usage and execution time of each line in python - by SriRajesh - Mar-06-2019, 01:34 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  negative memory usage akbarza 1 201 Apr-27-2024, 08:43 AM
Last Post: Gribouillis
  kill python execution program lebossejames 0 260 Mar-16-2024, 11:16 AM
Last Post: lebossejames
  Line by line execution of instructions JosephR 3 712 Jul-24-2023, 09:10 PM
Last Post: deanhystad
  python list out top 10 Memory utilisation mg24 0 825 Nov-20-2022, 10:51 PM
Last Post: mg24
  Confused about python execution jpezz 4 1,417 Oct-09-2022, 06:56 PM
Last Post: Gribouillis
Bug Embedded Python Memory Leaks Alexei 1 1,044 Sep-16-2022, 01:15 PM
Last Post: Alexei
  How to change UTC time to local time in Python DataFrame? SamKnight 2 1,642 Jul-28-2022, 08:23 AM
Last Post: Pedroski55
  multi-line CMD in one-line python kucingkembar 5 4,070 Jan-01-2022, 12:45 PM
Last Post: kucingkembar
  Reducing runtime memory usage in Cpython interpreter david_the_graower 2 2,250 Oct-18-2021, 09:56 PM
Last Post: david_the_graower
  python memory rd_rakesh 1 1,668 Jul-14-2021, 11:15 AM
Last Post: jefsummers

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020