pwwang

Results 23 issues of pwwang

I have made the prism themes for `plotnine`: https://github.com/pwwang/plotnine-prism which turns: ![image](https://user-images.githubusercontent.com/1188067/128787738-6dc7ceb4-73a3-45de-a1de-63a8c6c92d20.png) to: ![image](https://user-images.githubusercontent.com/1188067/128787759-581fbd72-aa30-4174-8b69-e6dc2d4f8d20.png) So should I make a PR or just keep it an independent package?

Enhancement
Gold

I don't find any way to plot a pie chart in python. I see it's implemented in kotlin (#40), but not yet in python. Is there a plan to implement...

https://github.com/mskcc/vcf2maf/blob/a071af6a8965cd313b5016a6cc17e596b704720f/maf2vcf.pl#L105 Change the size of the chunk to 1 will largely reduce the skipped file size.

```python console >>> import toml >>> import tomlkit >>> s = """ ... string = [''' ... [item] ... a = 1 ... ''', ''' ... [item] ... a =...

type: bug
component: decoder
syntax: strings

This is a great package with a lot of flexibilities! But When I tried to adjust the width of the letters, the x axis moved! Notice the alignment between the...

If a class has many ancestors, I don't all of them to be inherited. Is it possible to add configurations to limit this? or to disable inheritance?

https://github.com/daizutabi/mkapi/blob/6e0cf8f43adf1d5fe9008b751714817e694f88e3/mkapi/core/object.py#L201-L203 When some classes have improper or complicated `__getattr__` implemented, this will raise some errors unexpectedly. We should use try-except instead: ```python try: obj.__wrapped__ # Do something with obj.__wrapped__ #...

### Pandas version checks - [X] I have checked that this issue has not already been reported. - [X] I have confirmed this bug exists on the [latest version](https://pandas.pydata.org/docs/whatsnew/index.html) of...

Bug
Groupby
Regression

**Is your feature request related to a problem? Please describe.** Extension source code changes do not trigger live reload. Even when we reload the pages manually. **Describe the solution you'd...

feature-request

Original code ```r alist = list(a=1,b=2) alist[["a"]] = 3 alist$b = 4 ``` After align: ```r alist = list(a=1,b=2) alist[["a"]] = 3 alist$b = 4 ``` Expected: ```r alist =...