Back

Explore Courses Blog Tutorials Interview Questions
0 votes
3 views
in BI by (17.6k points)

I am using Scikit-Learn and Pandas libraries of Python for Data Analysis. How to interface Python with data visualization tools such as Qlikview?

closed

1 Answer

0 votes
by (47.2k points)
selected by
 
Best answer

There is no direct method to call Python from QlikView. You can follow the steps mentioned below:

  • You can create a Python program that outputs CSV (or any file format that QlikView can read)

  • Invoke your Python program from the QlikView script: EXEC python3 my_program.py > my_output.csv

  • Read the output into QlikView: LOAD * FROM my_output.csv (...)

You need to make sure that the EXEC command requires the privilege "Can Execute External Programs" on the Settings tab of the script editor.

Related questions

0 votes
1 answer
0 votes
1 answer
asked Apr 25, 2020 in BI by Anup (1.6k points)
0 votes
1 answer
0 votes
1 answer
asked Mar 22, 2020 in Data Science by Sudhir_1997 (55.6k points)

Browse Categories

...