Category "python"

Configurable mapping file python

My company is consuming an API that will give us large JSON objects. The API response info may be in dif fields based on query parameters (it's a 3rd party aggr

Query() in TinyDB with multiple files

I use Python + TinyDB, I have 2 json files, and I create 2 TinyDB objects: db = TinyDB(“db.json”) forum = TinyDB(“forum.json”) But how

curve fitting error for optimal parameters while using scipy optimize curvefit in python

I am getting optimization errors while creating map of h3 moments using a self-defined function get_h3 in python for an image file called "image_test". The idea

Python code in visual studio showing "raise Exception( 'Could not find a default OpenFlow controller' )" error

I have just started with the mininet and trying to build networks using python. I have tried to run the code shown in the image and pasted here in the following

How do you connect an arbitrary list of discrete control inputs to a plant?

I have a numpy array of discrete control inputs to provide my plant (one per fixed time_step). How would I hook that array of inputs up to my plant such that th

Keeping quotes from std out for passing to bash

Okay, this is a bit convoluted but I've got a python script that digests a json file and prints a string representation of that file like so for id in pwds.keys

how to make the box in my boxplot bigger?(matplotlib)

I use the matplotlib boxplot and plotted this graph. My question is how can I make the box larger or make the y-axis interval wider?

How to call a function once in a while loop

I have a robotic code, that does the following: camera starts processing and taking images Mounting Holes (hough transform) function detection is activated The

ValueError: shapes (4,166) and (12,12) not aligned: 166 (dim 1) != 12 (dim 0) in Two-Way ANOVA

I have trouble processing data with Two-Way ANOVA this is my data and I wanted to check if there's a difference in preference of Genre by country by using Anov

Append column of arrays in Pandas

I have a dataframe of arrays such as: | A | B | C | |:---- |:------:| -----:| | [0,1,2,3] | [1,2,5,6] | [0,1,4,5] | | [0,0,6,3] | [0,2,0,4] | [3,8,7,1]

how can I solve this circular dependent imports in order to execute many to one insert

I have the following two models in several files: routes/camera/model.py from services.db import db from dataclasses import dataclass from routes.project.models

Django converting isoformat string datetime to tuple and rising error

I'm trying to update two datetimefields for the Skill entity in my db. I'm sure I'm passing an isoformat datetime string. When creating instead of updating ever

spatial regression in Python - read matrix from list

I have a following problem. I am following this example about spatial regression in Python: import numpy import libpysal import spreg import pickle # Read sp

Split work between writing output from .exe and reading the output

I have a simple .exe downloaded from the apple app store. It gives real-time updates on crypto prices and their percentage change. I am extracting percentage ch

How to convert the elements of a python list of lists?

I have a python list (vals) containing lists of strings like this: [['540.0 ', '0.0 ', '0.0 ', '162.0 ', '2.5 ', '1040.0 ', '676.0 ', '28 ', '79.99 \r'], ['54

PYTHON Left Join Based on Partial Matches of Column

I have two dateframes: df1 = pd.DataFrame([ ['ABC, TX', 'P1'] , ['NA BCD, CT', 'P2'] , ['CDE, MN', 'P3'] , ['CDE, MN', 'P4']

Join by specific length of character [closed]

I want to join items in a list of lists based on these conditions: Item 1 is exactly 6 characters of length, and Item 2 is exactly 4 character

How to make the dataframe faster ? either by using dictionary or numpy?

I am new to data structures and I would like to make my code faster (this is just part of a bigger code). Using dataframes while looking up variables is slowing

How to add an Ontology IRI with the Python rdflib library?

My problem is described here but the (maybe old) proposed solution does not work for me! https://github.com/RDFLib/rdflib/issues/817 I would like to use rdflib

Pandas: Creating multiple indicator columns after condition with dates

So I have a data set with about 70,000 data points, and I'm trying to test out some code on a sample data set to make sure it will work on the large one. The sa