While it’s possible to delete data from a Dataset, entire Datasets can’t be deleted using the SDK. Use the Encord platform to delete Dataset. 
# Import dependencies
from encord import EncordUserClient
# Authenticate with Encord using the path to your private key. Replace \<private_key_path> with the path to your private key
user_client = EncordUserClient.create_with_ssh_private_key(
    ssh_private_key_path="<private_key_path>"
    )
# Specify the Dataset you want to remove files from. Replace \<dataset_hash> with the hash of your Dataset
dataset = user_client.get_dataset(
    "<dataset_hash>"
    )
# Specify the files to be deleted. Include all the data hashes below
dataset.delete_data(
    [
        "<video1_data_hash\>",
        "<image_group1_data_hash>",
    ]
)