Tag Archives: python

Best visualization for your data

This post on LinkedIn shares the data-to-viz.com web site that helps find the best visualization depending on the data itself. It is based on the number of numeric variables, (1,2,3, several) but can also be organized by category, both number and category, time series and more. Further more there are sample code in R, Python,… Read More »

A question-answering system for PDF files

This is a cool “App” written with Python Streamlit: upload a PDF and ask questions about it! It uses ChatGPT in the background. This “proof of concept” app has some “Community token” to access GPT. Or one can add a personal OpenAI API key. Web App: https://ask-my-pdf.streamlit.app Code: https://github.com/mobarski/ask-my-pdf Found on LinkedIn: streamlit_python-code-pdf (probably requires… Read More »

Python Data Science with Jupyter on Docker

Inspired by article “How to set up and run Python Data Science Development Environment with Jupyter on Docker” [Archived] Data Scientists coders must work with a variety of Data Science development tools, including the  Anaconda (or Miniconda) Python distribution platform, the Python programming language, the R programming language, Matplotlib library, Pandas Library, the Jupyter application, and many others. The article describes how to… Read More »

PyMOD 3: Structural Bioinformatics within PyMOL

Web page: http://schubert.bio.uniroma1.it/pymod/GitHub: https://github.com/pymodproject/pymod Reference Giacomo Janson, Alessandro Paiardini, PyMod 3: a complete suite for structural bioinformatics in PyMOL, Bioinformatics, Volume 37, Issue 10, 15 May 2021, Pages 1471–1472, https://doi.org/10.1093/bioinformatics/btaa849 Abstract The PyMod project is designed to act as a fully integrated interface between the popular molecular graphics viewer PyMOL, and some of the most… Read More »

Download Google Drive Files using wget

Cross-posting from post:  Download Google Drive Files using wget The problem: transfer file between clouds Files on Google drive can be shared between users, but the default access to the file is via we web browser graphical interface. However, sometimes it may be useful, or even necessary, to access and download a file from a command line,… Read More »