|
56 | 56 | pdf.image("healthcare.jpg", x=10, y=100, w=75, h=45)
|
57 | 57 |
|
58 | 58 | pdf.set_xy(x=90, y=100)
|
59 | | -pdf.multi_cell(w=0, h=5, txt="Examples of Python applications used in Healthcare:\n"+ |
| 59 | +pdf.multi_cell(w=0, h=5, txt="Examples of Python applications used in Healthcare:\n"+ |
60 | 60 | "* Parkinson's disease detection\n"+
|
61 | 61 | "* Heart disease detection\n"+
|
62 | 62 | "* Diabetes prediction\n"+
|
|
65 | 65 |
|
66 | 66 | pdf.set_xy(x=10, y=150)
|
67 | 67 | pdf.set_font("Arial", style="B", size=10)
|
68 | | -pdf.cell(w=0, h=5, txt=" 2. Data visualization", ln=1) |
| 68 | +pdf.cell(w=0, h=5, txt=" 2. Data Visualization", ln=1) |
69 | 69 |
|
70 | 70 | pdf.set_font("Arial", size=10)
|
71 | | -pdf.multi_cell(w=0, h=5, txt="Data visualization "+ |
72 | | - ""+ |
73 | | - ""+ |
74 | | - ""+ |
75 | | - "") |
| 71 | +pdf.multi_cell(w=0, h=5, txt="Using libraries like Matplotlib, you can create graphs, plots, maps and "+ |
| 72 | + "many more to better summarize and visualize your data."+ |
| 73 | + "A few examples of using Matplotlib library is that you can make accurate decisions,"+ |
| 74 | + "identify and compare multiple data sets to find results much faster. "+ |
| 75 | + "Examples of data visualization:\n"+ |
| 76 | + "https://www.tableau.com/learn/articles/best-beautiful-data-visualization-examples") |
76 | 77 |
|
| 78 | +pdf.image("data-visualization.png", x=10, y=180, w=90, h=50) |
77 | 79 |
|
| 80 | +pdf.set_xy(x=10, y=235) |
| 81 | +pdf.set_font("Arial", style="B", size=10) |
| 82 | +pdf.cell(w=0, h=5, txt=" 3. Game Development") |
| 83 | + |
| 84 | +pdf.set_font("Arial", size=10) |
| 85 | +pdf.multi_cell(w=0, h=5, txt="You can use PyGame library to create your very own 2D games, for example, "+ |
| 86 | + "Flappy Bird, Snake, Chess, World of Tanks and so much more!.") |
78 | 87 |
|
79 | 88 |
|
80 | 89 | # name document and add its path
|
|
0 commit comments