Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

a function to create a null matrix in python

def plot_null_matrix(df, figsize=(18,15)):    
	# initiate the figure    
	plt.figure(figsize=figsize)    
	# create a boolean dataframe based on whether values are null    
    df_null = df.isnull()    
    # create a heatmap of the boolean dataframe    
    sns.heatmap(~df_null, cbar=False, yticklabels=False)    
    plt.show()
 
PREVIOUS NEXT
Tagged: #function #create #null #matrix #python
ADD COMMENT
Topic
Name
8+3 =