How to Hide the "Simple Data Tables" Admin Menu

function plt_hide_superscripted_menus() {
	//Hide the "Tools → Simple Data Tables" menu.
	remove_submenu_page('tools.php', 'simple-data-tables');
}

add_action('admin_menu', 'plt_hide_superscripted_menus', 11);

Where do I put this code?