Rebuild the content of the document adding the reference to the sentences
This example creates a data set in which each record contains the content of the original documents, but in which the records are also identified by each different sentence of the original documents.
In order to run this example just paste the following statements in the Command area and press the button: EXECUTE. To view the content of the resulting data set go in the PATH tab and refer to the one named Documents_words.
This example creates a data set in which each record contains the content of the original documents, but in which the records are also identified by each different sentence of the original documents.
In order to run this example just paste the following statements in the Command area and press the button: EXECUTE. To view the content of the resulting data set go in the PATH tab and refer to the one named Documents_words.
Proc Records2sentences dict=Documents_words out=Documents_words_sentences; var word; vardescriptor vardescriptor; run; |