CData Python Connector for Oracle Eloqua Reporting

Build 25.0.9454

From Matplotlib

Matplotlib contains a number of tools that can graphically model Oracle Eloqua Reporting data after being fed a data frame From Pandas.

Using PyPlot

Before any Matplotlib tool, such as pyplot, can be used, it must be imported:
from matplotlib import pyplot as plt

Once a Pandas data frame is obtained, it can be used to create a plot visualizing Oracle Eloqua Reporting data. For example, the following plot generates and displays a bar graph relating accountId and AnnualRevenue values:

df.plot(kind="bar", x="accountId", y=["AnnualRevenue"])
plt.show()

Copyright (c) 2025 CData Software, Inc. - All rights reserved.
Build 25.0.9454