├── .editorconfig ├── .github └── workflows │ └── blank.yml ├── .idea ├── PandasVersusExcel.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── 1-CreateExcel ├── CreateExcel.py └── output.xlsx ├── 10-GroupedHistogran&DepthOptimizationChart ├── GroupedHistogran&DepthOptimizationChart.py └── Students.xlsx ├── 11-SuperimposedHistogram&HorizontalHistogram ├── SuperimposedHistogram&HorizontalHistogram.py └── Users.xlsx ├── 12-PieChart ├── PieChart.py └── Students.xlsx ├── 13-PolylineTrendChart&OverlayAreaMap ├── Orders.xlsx └── PolylineTrendChart&OverlayAreaMap.py ├── 14&15-ScatterPlot&Histogram&DensityMap ├── ScatterPlot&Histogram&DensityMap.py └── home_data.xlsx ├── 16-Join ├── Join.py └── Student_Score.xlsx ├── 17-DataValidation ├── DataValidation.py └── Students.xlsx ├── 18-DataSegmentation ├── DataSegmentation.py └── Employees.xlsx ├── 19-Statistics ├── Statistics.py └── Students.xlsx ├── 2-ReadExcel ├── People.xlsx └── ReadExcel.py ├── 20-DuplicateData ├── DuplicateData.py └── Students_Duplicates.xlsx ├── 21-RotateDataSet ├── RotateDataSet.py └── Videos.xlsx ├── 22-ReadData ├── ReadData.py ├── Students.csv ├── Students.tsv └── Students.txt ├── 23-GroupBy ├── GroupBy.py └── Orders.xlsx ├── 24-DataPrediction ├── DataPrediction.py └── Sales.xlsx ├── 25&26-ConditionalFormatting ├── .gitignore ├── ConditionalFormatting01.ipynb ├── ConditionalFormatting01.py ├── ConditionalFormatting02.ipynb ├── ConditionalFormatting02.py └── Students.xlsx ├── 27-RowOperation ├── RowOperation.py └── Students.xlsx ├── 28-ColOperation ├── ColOperation.py └── Students.xlsx ├── 29-ReadDataBase └── ReadDataBase.py ├── 3-Rows&Clumns&Cell └── Rows&Clumns&Cell.py ├── 30-WritingComplexEquations ├── Rectangles.xlsx └── WritingComplexEquations.py ├── 4&5-ReadData&BaseInput ├── Books.xlsx ├── Books_output.xlsx └── ReadData&BaseInput.py ├── 6-InputFunction ├── Books.xlsx └── InputFunction.py ├── 7-Sequence ├── List.xlsx └── Sequence.py ├── 8-DataFiltering ├── DataFiltering.py └── Students.xlsx ├── 9-Histogram ├── Figure_1.png ├── Histogram.py └── Students.xlsx ├── README.md └── _config.yml /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 4 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = false 9 | insert_final_newline = false -------------------------------------------------------------------------------- /.github/workflows/blank.yml: -------------------------------------------------------------------------------- 1 | name: Deploy to Github Pages 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | 8 | jobs: 9 | build-and-deploy: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - name: Checkout 13 | uses: actions/checkout@master 14 | 15 | - name: Build and Deploy 16 | uses: JacksonMaxfield/github-pages-deploy-action-python@master 17 | env: 18 | ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} 19 | BASE_BRANCH: master # The branch the action should deploy from. 20 | BRANCH: gh-pages # The branch the action should deploy to. 21 | FOLDER: docs/_build/html # The folder the action should deploy. This example folder is generated by Sphinx 22 | BUILD_SCRIPT: pip install .[all] && make docs-build && touch docs/_build/html/.nojekyll # The build script the action should run prior to deploying. 23 | -------------------------------------------------------------------------------- /.idea/PandasVersusExcel.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 98 | 99 | 100 | 102 | 103 | 150 | 151 | 152 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 |