Создать DF из двух массивов

a = np.random.rand(5)
b = np.sqrt(a)
df = pd.DataFrame({'a':a, 'b':b})
Lena Rubi