Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to import a QVD file into the R Console.I'm new to both the softwares.Can anyone help me out ?
R cannot read qvd files. You will need some kind of utility that can read qvd files (like qlikview) and export the data to a format that R can read, for example csv. You can use Qlikview to do this:
T1:
LOAD * FROM MyQvdFile.qvd (qvd);
STORE Table T1 into MyCSVFile.csv (txt);
The result is a csv file with the name MyCSVFile.csv
R cannot read qvd files. You will need some kind of utility that can read qvd files (like qlikview) and export the data to a format that R can read, for example csv. You can use Qlikview to do this:
T1:
LOAD * FROM MyQvdFile.qvd (qvd);
STORE Table T1 into MyCSVFile.csv (txt);
The result is a csv file with the name MyCSVFile.csv
Thanks
I have a problem on T1; it dosn't work
Table is not on script. It is ok:
STORE T1 into MyCSVFile.csv (txt);
I have not tried this yet. https://github.com/JoseEchave/qlikviewr