faizhalas commited on
Commit
f84a1df
β€’
1 Parent(s): 34db5c9

Update Home.py

Browse files
Files changed (1) hide show
  1. Home.py +25 -11
Home.py CHANGED
@@ -46,7 +46,7 @@ with mt2:
46
  st.markdown("![Source: https://studymachinelearning.com/stemming-and-lemmatization/](https://studymachinelearning.com/wp-content/uploads/2019/09/stemmin_lemm_ex-1.png)")
47
  st.text('Source: https://studymachinelearning.com/stemming-and-lemmatization/')
48
  st.text("3. Now you need to select what kind of keywords you need.")
49
- st.text("4. Finally, you can download and use the file on VOSviewer, Bibliometrix, or else!")
50
  st.error("Please check what has changed. It's possible some keywords failed to find their roots.", icon="🚨")
51
 
52
  with tab3:
@@ -60,6 +60,9 @@ with mt2:
60
  | Web of Science | Tab delimited file | Author Keywords |
61
  | | (.txt) | Keywords Plus |
62
  +----------------+------------------------+---------------------------------+
 
 
 
63
  | Other | .csv | Change your column to 'Keyword' |
64
  +----------------+------------------------+---------------------------------+
65
  """)
@@ -86,7 +89,7 @@ with mt2:
86
  st.text("1. Put your file. We use abstract column for this process.")
87
  st.text("2. Choose your preferred method. LDA is the most widely used, whereas Biterm is appropriate for short text, and BERTopic works well for large text data as well as supports more than 50+ languages.")
88
  st.text("3. Finally, you can visualize your data.")
89
- st.error("This app includes lemmatization and stopwords for the abstract text. Currently, we only offer English words. For other languages you can use stemming.", icon="πŸ’¬")
90
  st.error("If you want to see the topic on another data (chats, questionnaire, or other text), change the column name of your table to 'Abstract'.", icon="🚨")
91
 
92
  with tab3:
@@ -100,6 +103,9 @@ with mt2:
100
  | Web of Science | Tab delimited file | Abstract |
101
  | | (.txt) | |
102
  +----------------+------------------------+----------------------------------+
 
 
 
103
  | Other | .csv | Change your column to 'Abstract' |
104
  +----------------+------------------------+----------------------------------+
105
  """)
@@ -149,6 +155,9 @@ with mt2:
149
  | Web of Science | Tab delimited file | Author Keywords |
150
  | | (.txt) | Keywords Plus |
151
  +----------------+------------------------+---------------------------------+
 
 
 
152
  | Other | .csv | Change your column to 'Keyword' |
153
  | | | and separate the words with ';' |
154
  +----------------+------------------------+---------------------------------+
@@ -174,15 +183,20 @@ with mt2:
174
 
175
  with tab3:
176
  st.text("""
177
- +----------------+------------------------+----------------+
178
- | Source | File Type | Column |
179
- +----------------+------------------------+----------------+
180
- | Scopus | Comma-separated values | (Source title, |
181
- | | (.csv) | Document Type, |
182
- +----------------+------------------------| Cited by, |
183
- | Web of Science | Tab delimited file | Year) |
184
- | | (.txt) | |
185
- +----------------+------------------------+----------------+
 
 
 
 
 
186
  """)
187
 
188
  with tab4:
 
46
  st.markdown("![Source: https://studymachinelearning.com/stemming-and-lemmatization/](https://studymachinelearning.com/wp-content/uploads/2019/09/stemmin_lemm_ex-1.png)")
47
  st.text('Source: https://studymachinelearning.com/stemming-and-lemmatization/')
48
  st.text("3. Now you need to select what kind of keywords you need.")
49
+ st.text("4. Finally, you can download and use the file on VOSviewer, Bibliometrix, or put it on OpenRefine to get better result!")
50
  st.error("Please check what has changed. It's possible some keywords failed to find their roots.", icon="🚨")
51
 
52
  with tab3:
 
60
  | Web of Science | Tab delimited file | Author Keywords |
61
  | | (.txt) | Keywords Plus |
62
  +----------------+------------------------+---------------------------------+
63
+ | Lens.org | Comma-separated values | Keywords (Scholarly Works) |
64
+ | | (.csv) | |
65
+ +----------------+------------------------+---------------------------------+
66
  | Other | .csv | Change your column to 'Keyword' |
67
  +----------------+------------------------+---------------------------------+
68
  """)
 
89
  st.text("1. Put your file. We use abstract column for this process.")
90
  st.text("2. Choose your preferred method. LDA is the most widely used, whereas Biterm is appropriate for short text, and BERTopic works well for large text data as well as supports more than 50+ languages.")
91
  st.text("3. Finally, you can visualize your data.")
92
+ st.error("This app includes lemmatization and stopwords for the abstract text. Currently, we only offer English words.", icon="πŸ’¬")
93
  st.error("If you want to see the topic on another data (chats, questionnaire, or other text), change the column name of your table to 'Abstract'.", icon="🚨")
94
 
95
  with tab3:
 
103
  | Web of Science | Tab delimited file | Abstract |
104
  | | (.txt) | |
105
  +----------------+------------------------+----------------------------------+
106
+ | Lens.org | Comma-separated values | Abstract (Scholarly Works) |
107
+ | | (.csv) | |
108
+ +----------------+------------------------+----------------------------------+
109
  | Other | .csv | Change your column to 'Abstract' |
110
  +----------------+------------------------+----------------------------------+
111
  """)
 
155
  | Web of Science | Tab delimited file | Author Keywords |
156
  | | (.txt) | Keywords Plus |
157
  +----------------+------------------------+---------------------------------+
158
+ | Lens.org | Comma-separated values | Keywords (Scholarly Works) |
159
+ | | (.csv) | |
160
+ +----------------+------------------------+---------------------------------+
161
  | Other | .csv | Change your column to 'Keyword' |
162
  | | | and separate the words with ';' |
163
  +----------------+------------------------+---------------------------------+
 
183
 
184
  with tab3:
185
  st.text("""
186
+ +----------------+------------------------+--------------------+
187
+ | Source | File Type | Column |
188
+ +----------------+------------------------+--------------------+
189
+ | Scopus | Comma-separated values | Source title, |
190
+ | | (.csv) | Document Type, |
191
+ +----------------+------------------------| Cited by, Year |
192
+ | Web of Science | Tab delimited file | |
193
+ | | (.txt) | |
194
+ +----------------+------------------------+--------------------+
195
+ | Lens.org | Comma-separated values | Publication Year, |
196
+ | | (.csv) | Publication Type, |
197
+ | | | Source Title, |
198
+ | | | Citing Works Count |
199
+ +----------------+------------------------+--------------------+
200
  """)
201
 
202
  with tab4: