Posts by Matheus Lima • 187 points
5 posts
-
0
votes0
answers10
viewsQ: Manually create error bar in Seaborn
I have the error of my calculated data and want to use this information to plot an error bar on the graph. I saw that Seaborn makes automatic, but I want to use my estimate. I’m using the lineplot…
-
12
votes3
answers844
viewsQ: How to initialize a list of empty lists?
Using Python 2.7.12 I need to create a list as follows: lista = [[],[],[],[],.........,[]] This list needs to have a very large number of lists within it (so the .....). I found around the following…
-
1
votes0
answers87
viewsQ: Bibtex gives error in abbreviation
I’m having trouble putting the name of the magazines in my quotes. The following error appears: ? ! Undefined control sequence. l.103 \newblock {\em \apj}, 615:209--221, Nov. 2004. The term \apj…
latexasked Matheus Lima 187 -
1
votes1
answer65
viewsQ: Set an analytic function in python
I need to do some operations with matrices (very large), but the elements of it are analytical functions. There is a way to do this in Python? Ex: Matrix = [[x**2+3x,x+y+1]...[...].....[...]]…
-
4
votes1
answer1707
viewsQ: Ordering a second list according to the ordering of the first list
I have the following (silly example): lista=[[3,6,4,2,7],[8,4,6,4,3]] I want to put lista[0] in ascending order, modifying lista[1] in accordance with lista[0]. To illustrate what I want below:…