The code drops the columns that are not required from the table: inputData <- inputData[,!(colnames(inputData) %in% c('col1','col2',''))] Need help converti
Recently i have started working on python and MS word. I tried to update the Table of contents in a .docx document using win32com.client python module(pywin32).
I wrote a python lambda that does basic HTTP auth using a user name and password. I created a simple static website in S3 and the python auth lambda is to be i
Question: In Apache Spark Dataframe, using Python, how can we get the data type and length of each column? I'm using latest version of python. Using pandas data
Im trying testing if its possible to run two functions in one Azure function app one running FastAPI and the other one running Flask. I tried to specify a diffe
I write a code for get some data with a fake ip. but my code don't work correctly import requests proxies = {"https://": "https://190.71.22.98:8080",} r = requ
I have successfully installed Python 3.10. I want to install packages. Pandas, BeautifulSoup4, and requests. I tried to import NumPy but IDE says it doesn't hav
When I run this code, the Dropdown is nowhere to be found. How do I make it appear in ax1? (I think I would like to avoid Tkinter.) #!/usr/bin/env python3 #Pla
I am trying to execute a code of mine, but i keep getting the following error: ModuleNotFoundError: No module named 'hcaptcha' When I try installing 'hcaptcha
I have some long scripts to convert from py2 to py3. Also, I am a beginner and I don't have experience with python. On my computer (windows 10) I have python 27
I'm trying to replace text in PowerPoint slides with an image. For example, if I find <graph1> I would like to replace that text with the picture "picture
I am trying to make a python program for "The Sieve Of Eratosthenes" but I am stuck at one place. The c program I wrote looks something like this : for (i = 2;
I'm working on an application where I've embedded a vispy scene.SceneCanvas to pyqt5 to plot volumes. But when I put pyqt5 on full screen, it flickers whenever
So i got 2 pandas.core.frame.DataFrame like this: anomalies: Sales outlet Date 2006-07-01 700 2 a
I am trying to render a scene that simply contains a mesh of obj file and the material file. It looks okay when I try to view with o3d.visualization.draw([{
I have made a script which makes a valid ppm file which when opened using a ppm viewer is working properly. But I don't want my users to insta
Any time I type the years that end with 16 or 20, example: 2016 or 3020, it just ends. The code I am using is below, any help would be much appreciated. Thank y
In MyDrive/colab a I have these files: 00-imports.py with content... !pip install boto3 classes.py with content... class Test def __init__(self): print(
Tried to do casting on this little project I am working on can anyone tell me what I have done wrong? Calculation_to_units = 24 name_of_unit = "hours" def day
I am a beginner, trying to learn recursion and solve some problems (trying the subsequences problem). But before I could even attempt to get the recursion logic