Nothing
Helps clients to convert stach to tabular format.
This package was used to convert stach to tabular format and to get meta data from stach.
install.packages('factset.protobuf.stach.v2')
install.packages('factset.protobuf.stachextensions')
library(factset.protobuf.stach.v2)
# Column Organized Stach
package <- read(factset.protobuf.stach.v2.Package,input='local path of your stach extension file')
stachExtensioncol <- factset.protobuf.stachextensions::V2ColumnOrganizedStachExtension$new()
# To get the Column Organized stach data in tabular format with merging the headers
columnOrganizedData <- stachExtensioncol$ConvertToDataFrame(package)
# To get the Column Organized stach data in tabular format without merging the headers
columnOrganizedData <- stachExtensioncol$ConvertToDataFrame(package,FALSE)
# To get the Column Organized meta data
columnOrganizedMetadata <- stachExtensioncol$GetMetadata(package)
# Row Organized Stach
package <- read(factset.protobuf.stach.v2.RowOrganizedPackage,input='local path of your stach extension file')
stachExtensionrow <- factset.protobuf.stachextensions::V2RowOrganizedStachExtension$new()
# To get the Row Organized stach data in tabular format with merging the headers
rowOrganizedData <- stachExtensionrow$ConvertToDataFrame(package)
# To get the Row Organized stach data in tabular format without merging the headers
rowOrganizedData <- stachExtensionrow$ConvertToDataFrame(package,FALSE)
# To get the Row Organized meta data
rowOrganizedMetadata <- stachExtensionrow$GetMetadata(package)
analytics.api.support@factset.com
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.