Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.

Loading Amazon Connect data into alteryx

Bharat_andalam
6 - Meteoroid

Hi All,

 

Can anyone help me in loading the Amazon Connect data into Alteryx and do a fuzzy match to make sense and understand the data.

 

Analyse the amazon connect data for things like sentiment, reason etc.

2 REPLIES 2
TrevorS
Alteryx Alumni (Retired)

Hello @Bharat_andalam 


Thank you for your contribution to the Community!

To help make it easier for others to assist, it would be helpful to get some additional information on your process. Here's what we recommend you include in your reply:

* What Alteryx Version are you using?
* Do you have a Workflow with sample data you can share?
* What about a Screenshot?
* What does the data look like? (Beginning data vs. Final Output)
* Are you receiving an Error Message?

Posting for Fastest Possible Solution

Thank you very much!

TrevorS

Community Moderator
Bharat_andalam
6 - Meteoroid

Hi Trevor,

 

Please find the details below:

 

* What Alteryx Version are you using? 2019.2
* Do you have a Workflow with sample data you can share? I am looking forward for suggestions
* What does the data look like? (Beginning data vs. Final Output) Beginning data contains the Call transcripts and Final output will decode the sentiment and reason for the call.
* Are you receiving an Error Message?

I tried to use the Sentiment Analysis Macro, i get the below error:

Error: Sentiment Analysis (Vader) (29): Tool #30: ---------------------------------------------------------------------------
CalledProcessError Traceback (most recent call last)
<ipython-input-2-4f23cb0817ef> in <module>
1 from ayx import Alteryx
----> 2 Alteryx.installPackage('vadersentiment')
3
c:\program files\alteryx\bin\miniconda3\pythontool_venv\lib\site-packages\ayx\export.py in installPackage(package, install_type, debug, **kwargs)
138 This function will install a package or list of packages into the virtual environment used by the Python tool. If using an admin installation of Alteryx, you must run Alteryx as administrator in order to use this function and install packages.
139 """
--> 140 __installPackages__(package, install_type=install_type, debug=debug, **kwargs)
141
142
c:\program files\alteryx\bin\miniconda3\pythontool_venv\lib\site-packages\ayx\Package.py in installPackages(package, install_type, debug)
112 print(pip_install_result['msg'])
113 if not pip_install_result['success']:
--> 114 raise pip_install_result['err']
c:\program files\alteryx\bin\miniconda3\pythontool_venv\lib\site-packages\ayx\Utils.py in runSubprocess(args_list, debug)
48
49 try:
---> 50 result = subprocess.check_output(args_list, stderr=subprocess.STDOUT)
51 if debug:
52 print("[Subprocess success!]")
C:\Program Files\Alteryx\bin\Miniconda3\lib\subprocess.py in check_output(timeout, *popenargs, **kwargs)
334
335 return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
--> 336 **kwargs).stdout
337
338
C:\Program Files\Alteryx\bin\Miniconda3\lib\subprocess.py in run(input, timeout, check, *popenargs, **kwargs)
416 if check and retcode:
417 raise CalledProcessError(retcode, process.args,
--> 418 output=stdout, stderr=stderr)
419 return CompletedProcess(process.args, retcode, stdout, stderr)
420
CalledProcessError: Command '['c:\\program files\\alteryx\\bin\\miniconda3\\pythontool_venv\\scripts\\python.exe', '-m', 'pip', 'install', 'vadersentiment']' returned non-zero exit status 1.

 

Labels
Top Solution Authors