Skip to content

Tag: python

Matplotlib different size subplots

I need to add two subplots to a figure. One subplot needs to be about three times as wide as the second (same height). I accomplished this using GridSpec and the colspan argument but I would like to do this using figure so I can save to PDF. I can adjust the first figure using the figsize argument in the

How to use can_add_related in Django Admin

I’ve read about the can_add_related feature here: https://code.djangoproject.com/ticket/9071 I tried using it this way: But this throws a TypeError and I don’t know how to solve this. Can someone point me in the right direction? Thank you. Answer This is probably coming in late. But for other view…

How to create a user in Django?

I’m trying to create a new User in a Django project by the following code, but the highlighted line fires an exception. Any help? Answer The correct way to create a user in Django is to use the create_user function. This will handle the hashing of the password, etc..

How to put a variable into Python docstring

So I’m trying to create a “dynamic” docstring which is something like this: to basically let the docstring for @param animalType show whatever ANIMAL_TYPES has; so that when this variable is updated, the docstring will be updated automatically. Unfortunately, it doesn’t seem to work. D…

How to generate SOPInstance UID for DICOM file?

I am developing a system which will be able to create structured report for PACS. Obviously in order to create a DICOM instance (file containing Report data), I need three UIDs for Study, Series and Instance. StudyUID and SeriesUID must be the same as that of study and series that report is created for. But f…

How to convert `ctime` to `datetime` in Python?

For me at the moment, t is ‘Sat Apr 21 11:58:02 2012’. I have more data like this. My question is: How to convert t to datetime in Python? Are there any modules to to it? I tried to make a time dict and then convert t, but feel like that’s not the best way to do it in Python.