Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -319,41 +319,23 @@ elif app_mode == "Visualization":
|
|
319 |
|
320 |
# - - - - - - - - - - - - - - TAB 3
|
321 |
tab3.title('Feature(Data) Engineering')
|
322 |
-
tab3.
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
\nits price-to-sales ratio. \n
|
340 |
-
ESG-PB Interaction: This interaction captures how a company's ESG
|
341 |
-
\nperformance may impact its price-to-book ratio. It helps assess
|
342 |
-
\nwhether sustainability practices influence investors' perceptions of
|
343 |
-
\na company's value relative to its assets. \n
|
344 |
-
PS-PB Interaction: This interaction explores the relationship
|
345 |
-
\nbetween price-to-sales and price-to-book ratios. It provides insights
|
346 |
-
\ninto how investors weigh sales revenue and asset value when
|
347 |
-
\nevaluating a company's stock.
|
348 |
-
\nComposite Score:
|
349 |
-
|
350 |
-
The composite score combines the weighted contributions of ESG ranking,
|
351 |
-
\nPS ratio, PB ratio, and possibly other metrics. It offers a holistic
|
352 |
-
\nassessment of a company's overall performance and sustainability.
|
353 |
-
\nA higher composite score indicates better overall performance
|
354 |
-
\nbased on the chosen metrics and weights.
|
355 |
-
"""
|
356 |
-
)
|
357 |
|
358 |
# -- new table --
|
359 |
tab3.write(tech_df)
|
|
|
319 |
|
320 |
# - - - - - - - - - - - - - - TAB 3
|
321 |
tab3.title('Feature(Data) Engineering')
|
322 |
+
tab3.markdown( """
|
323 |
+
1. ***ESG Ranking:***
|
324 |
+
- This metric reflects a company's ESG performance - better sustainability practices.
|
325 |
+
2. ***PS Ratio (Price-to-Sales Ratio)***:
|
326 |
+
- This ratio compares a company's market capitalization to its total sales revenue - it indicates how much investors are willing to pay for each dollar of sales generated by the company.
|
327 |
+
3. ***PB Ratio (Price-to-Book Ratio)***:
|
328 |
+
- The PB ratio compares a company's market value to its book value - indicating how much investors are willing to pay for each dollar of assets.
|
329 |
+
4. ***ROA Ratio (Return on Assets Ratio):***
|
330 |
+
- This ratio measures a company's profitability relative to its total assets - it indicates how efficiently a company is generating profits from its assets.
|
331 |
+
#### Interaction Terms:
|
332 |
+
- ***ESG-PS Interaction:***
|
333 |
+
- The interaction between ESG ranking and PS ratio captures how a company's sustainability practices may influence its price-to-sales ratio. ESG-PB Interaction: This interaction captures how a company's ESG performance may impact its price-to-book ratio. It helps assess whether sustainability practices influence investors' perceptions of a company's value relative to its assets.
|
334 |
+
- ***PS-PB Interaction:***
|
335 |
+
- This interaction explores the relationship between price-to-sales and price-to-book ratios. It provides insights into how investors weigh sales revenue and asset value when evaluating a company's stock.
|
336 |
+
- ***Composite Score:***
|
337 |
+
- The composite score combines the weighted contributions of ESG ranking, PS ratio, PB ratio, and possibly other metrics. It offers a holistic assessment of a company's overall performance and sustainability. A higher composite score indicates better overall performance based on the chosen metrics and weights.
|
338 |
+
""" )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
339 |
|
340 |
# -- new table --
|
341 |
tab3.write(tech_df)
|