| bio | website | dgrtwo.github.com |
|---|---|---|
| location | Princeton, NJ | |
| age | 25 | |
| visits | member for | 2 years, 1 month |
| seen | 4 hours ago | |
| stats | profile views | 1,988 |
I'm a PhD candidate in Quantitative and Computational Biology at Princeton University.
|
May 15 |
answered | What is the Python (numpy or scipy or Pandas) equivalent for R's adjboxStats function? |
|
May 15 |
comment |
Runing R code on `python` with SyntaxError: keyword can't be an expression error Message @mongotop: Oh- it looks like you just did |
|
May 15 |
comment |
Runing R code on `python` with SyntaxError: keyword can't be an expression error Message @mongotop Could you post this as a new question, including an entirely reproducible example? That is- it should have a snippet of Python code that, as long as someone runs that exact code and has rpy2 installed (and robustbase installed) it should give the same error? |
|
May 15 |
comment |
Turn dict into list wipes out the values You were looking for d.items() |
|
May 14 |
comment |
Runing R code on `python` with SyntaxError: keyword can't be an expression error Messagec is an R function and it is not a Python function. Instead use r.c. |
|
May 14 |
comment |
Runing R code on `python` with SyntaxError: keyword can't be an expression error Message You meant to do r("adjboxStats"), but see my answer for the rest. |
|
May 14 |
answered | Runing R code on `python` with SyntaxError: keyword can't be an expression error Message |
|
May 14 |
comment |
Runing R code on `python` with SyntaxError: keyword can't be an expression error Message Where is adjboxStats defined? |
|
May 14 |
comment |
Runing R code on `python` with SyntaxError: keyword can't be an expression error Message You can't use do.conf or do.out as arguments to a Python function (even if the function will be converted to R). |
|
May 14 |
revised |
how to customize the radio button in Django edited tags |
|
May 13 |
comment |
downloaded data can't be read in R Given the misformattings and punctuation issues, I'm surprised this made it past the recently tightened quality control filter... |
|
May 13 |
revised |
downloaded data can't be read in R deleted 5 characters in body |
|
May 13 |
revised |
downloaded data can't be read in R edited title |
|
May 13 |
revised |
Assigning class variables in R deleted 54 characters in body |
|
May 13 |
comment |
BoundField' object is not iterable - Django I'm still not clear about the question- in particular, I don't understand what your HTML output looks like. However, this doesn't have anything to do with your initial question, so I suggest you create a new one. It would be a good idea to show the generated HTML and explain why it doesn't look like what you want it to (For one thing, I'm not sure whether your code is <div> or <div class="select">- it differs between your code and your error traceback). In the meantime, I added the answer to your original question as an answer. |
|
May 13 |
answered | BoundField' object is not iterable - Django |
|
May 13 |
comment |
BoundField' object is not iterable - Django I don't really know what you mean by that. Can you edit your question to explain? |
|
May 13 |
comment |
BoundField' object is not iterable - Django Please try changing the line {% for radio in SettingsForm.date_format %} to {% for radio in SettingsForm.date_format.field.choices %} |
|
May 13 |
comment |
How to breakup a list of list in a given way in Python @pushpen.paul: I meant to put func([[1], [2], [1, 2, 3]]) |
|
May 13 |
comment |
How to breakup a list of list in a given way in Python And what happens in a case like func([1], [2], [1, 2, 3])? Does that return [[1], [2], [3]] or [[1], [2], [1, 3]]? |