I have a dataframe and two array with differents sizes and i want to create a single dataframe
for example
import pandas
import numpy
df = pandas.DataFrame(numpy.array([[0,0,1]]),columns = ['A', 'B', 'C'])
V1=numpy.array([0,1,3,4])
V2=numpy.array([2,3,5,8,11,12])
I want obtain a single dataframe like :
A B C V1 V2
0 0 1 0 2
0 0 1 1 3
0 0 1 3 5
0 0 1 4 8
0 0 1 Nan 11
0 0 1 Nan 12