https://github.com/naguales/text-analyzer
The app finds and lists the top 10 longer letter combinations with their frequency differences.
https://github.com/naguales/text-analyzer
bar-chart cpp cpp17 demo-app letter-combinations multithreading qt qt-gui qt-widgets tableview text-analysis text-analyzer
Last synced: 4 months ago
JSON representation
The app finds and lists the top 10 longer letter combinations with their frequency differences.
- Host: GitHub
- URL: https://github.com/naguales/text-analyzer
- Owner: Naguales
- License: mit
- Created: 2023-10-06T21:23:15.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-10-06T21:58:34.000Z (over 1 year ago)
- Last Synced: 2025-01-04T01:45:09.512Z (5 months ago)
- Topics: bar-chart, cpp, cpp17, demo-app, letter-combinations, multithreading, qt, qt-gui, qt-widgets, tableview, text-analysis, text-analyzer
- Language: C++
- Homepage:
- Size: 966 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Text Analyzer
The program analyzes a text file, identifying letter combinations consisting of more than 3 letters. It then generates an output that includes the top 10 most common letter combinations, along with their respective frequency differences displayed as a table and a bar chart.
# Example
Given the content of the input file:
```sh
aerodynamic aerobics aerobiology
```The program's output would be:
| Letter Combination | Frequency |
| -------------------- | ----------- |
| aero | 3.448% |
| erob | 2.299% |
| robi | 2.299% |
| aerob | 2.299% |
| erobi | 2.299% |
| aerobi | 2.299% |
| amic | 1.149% |
| bics | 1.149% |
| biol | 1.149% |
| dyna | 1.149% |