Random-Int-With-2-Dim
Sat 17 May 2025
title: "Random Integer with 2 dimension" author: "Rj" date: 2019-04-22 description: "-" type: technical_note draft: false
import numpy as np
import pandas as pd
# Create Random integer between 1 to 100
df = pd.DataFrame(np.random.randint(0, 100, size=(2, 4)), columns=['A', 'B', 'C', 'D'])
df
Category: data-wrangling
Read More