Description Usage Arguments Value Author(s) See Also Examples
View source: R/3_inspectScicloud.R
The last function to be called to perform analysis in scicloud.
It takes the result of scicloudAnalysis
and returns a summary of the
cluster analysis.
1 | inspectScicloud(scicloudAnalysis)
|
scicloudAnalysis |
the result of |
A summary of the analysis is printed into the console. It gives insights into the total number of papers and words used. If the method was hclust, the returned object contains:
paperCluster
: a paper-cluster table. Each paper
belongs to one cluster. Use View(scicloudSpecs$paperCluster)
to see
which paper belongs to which cluster.
IndVal
: a words-cluster table. Words do not
belong to one single cluster. An indicator species analysis shows how
representative each word is for each cluster. Use View(scicloudSpecs$IndVal)
to view the results of the indicator species analysis.
excludedPapers
: the excluded papers. Use
View(scicloudSpecs$excludedPapers)
to see which papers have
been excluded, possibly because of a PDF error.
representativePapers
: the most representative papers. Use
View(scicloudSpecs$representativePapers)
to see which papers
are the most representative ones, weighted with the indicator species
values of the words in the paper.
metaMatrix
: matrix with metadata of the papers. Use
View(scicloudSpecs$metaMatrix)
to view the original
metaMatrix (without full texts, so it's safe to open).
Creator of the scicloud workflow: Henrik von Wehrden,
henrik.von_wehrden@leuphana.de
Code by: Lisa Gotzian, lisa.gotzian@stud.leuphana.de
First version of scicloud: Matthias Nachtmann, matthias.nachtmann@stud.leuphana.de
Other scicloud functions:
createScicloudList()
,
deleteRDS()
,
runAnalysis()
,
searchScopus()
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Not run:
### Workflow of performing analysis using scicloud
myAPIKey <- "YOUR_API_KEY"
# retrieving data from PDFs and Scorpus website using API
scicloudList <- createScicloudList(myAPIKey = myAPIKey)
# Run the analysis with a specified no. of cluster
scicloudAnalysis <- runAnalysis(scicloudList = scicloudList, numberOfClusters = 4)
# Generate a summary of the analysis
scicloudSpecs <- inspectScicloud(scicloudAnalysis)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.