Mark Neal

Results 14 comments of Mark Neal

Does this relate to this issue? [412](https://github.com/rstudio/gt/issues/412) DT handles this with extensions, what it calls FixedColumns and FixedHeaders, described [here](https://rstudio.github.io/DT/extensions.html)

Hi, I've just made some mods to @sumairshah2 code to make some of the steps a bit clearer, might be useful to others? Apologies for the base R in places!...

There is a group of people who use rmarkdown to create html output and pdf output (e.g with xelatex). Html does fallback fonts work very neatly, but the same code...

From this link (https://github.com/rstudio/cloudml/issues/191) I got the concept to use in terminal this command: `gcloud auth login --no-launch-browser` That should make a link that you can copy and paste into...

An observation from my experience: I was doing a fuzzy join and ran out of RAM, but the largest dataframe was only 200,000 rows. I subsetted the two dataframes by...

If you like the fuzzy join approach, you may be able to subset your data frames by region, then fuzzy join within regions, then join up the resultant data frames....

I've done some additional testing with the code from `geom_xspline()` help file to identify: 1) Exactly which options in `geom_xspline()` are causing issues with `ggsave()` -> `linetype=2` and `spline_shape =...

Issue at ggplot can be reopened if it is clear issue is at that end of the chain. Obviously we can sidestep the problem temporarily by saving with png(), but...

@ckukunda , I think your issue is different, as you are trying to get **records**, whereas I am getting **data**. I have had no trouble getting records. Perhaps log a...

Is the problem as simple as a change in the directory/path format in the `paste0()`? If so, it might not be that difficult to fix with a pull request, though...