1

I wish to query(read) IP21 tag values using my R script. Is there a way to do that? The closest I have come is populating an excel sheet with the ASPEN add-in functionality and then reading the values in R. Is there a direct way to read the values from IP21? Does IP21 ODBC help?

NeelDeveloper
  • 139
  • 1
  • 15
  • 1
    From a quick review you should be able to use the RODBC package since IP21 does support ODBC. The key will be figuring out the connection string and reading the RODBC vignette. – hrbrmstr Jul 21 '16 at 10:23

1 Answers1

1
DRIVER={AspenTech SQLplus};HOST=yelm

Taken from the documentation. Works with RODBC.

NeelDeveloper
  • 139
  • 1
  • 15