-
Notifications
You must be signed in to change notification settings - Fork 94
Adding collaboration docs to website #546
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| --- | ||
| title: "Health Informatics Conferences" | ||
| output: | ||
| html_document: | ||
| theme: cosmo | ||
| --- | ||
|
|
||
| # 2025 | ||
|
|
||
| ```{r setup-data-test, include=FALSE} | ||
|
|
||
| df <- data.frame( | ||
| conference = c( | ||
| "2025 International Conference on Machine Learning", | ||
| "The IEEE International Conference on Data Mining", | ||
| "KDD", | ||
| "International Conference on Medical and Health Informatics", | ||
| "MEDINFO", | ||
| "American Medical Informatics Association (AMIA) Annual Symposium" | ||
| ), | ||
|
|
||
| submission = c( | ||
| "30-Jan-25", | ||
| "6-Jun-25", | ||
| "3-Feb-25", | ||
| "15-Mar-25", | ||
| "10-Jan-25", | ||
| "19-Mar-25" | ||
| ), | ||
|
|
||
| attendance = c( | ||
| "13-Jul-25", | ||
| "12-Nov-25", | ||
| "3-Aug-25", | ||
| "16-May-25", | ||
| "9-Aug-25", | ||
| "15-Nov-25" | ||
| ), | ||
|
|
||
| location = c( | ||
| "Vancouver, Canada", | ||
| "Washington DC, USA", | ||
| "Toronto, Canada", | ||
| "Kyoto, Japan", | ||
| "Taipei, Taiwan", | ||
| "Atlanta, GA" | ||
| ) | ||
| ) | ||
|
|
||
| ``` | ||
| ```{r, test, echo=FALSE} | ||
| knitr::kable( | ||
| x = df, | ||
| caption = 'List of potential conferences with dates' | ||
| ) | ||
| ``` | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,25 @@ | ||||||
| --- | ||||||
| title: "Workgroup Meeting" | ||||||
| output: | ||||||
| html_document: | ||||||
| theme: cosmo | ||||||
| toc: true | ||||||
| --- | ||||||
|
|
||||||
| # PatientLevelPrediction calendar workgroup meetings | ||||||
| Meeting occurs on the 2nd wednesday of each month at 11am ET. | ||||||
|
|
||||||
| ## 9-Apr 2025 | ||||||
| [tentative] presentation by Sahar Hanifi | ||||||
|
|
||||||
| ## 12-Mar 2025 | ||||||
| [tentative] Lightning talks on collaborative research ideas | ||||||
|
|
||||||
| ## 12-Feb 2025 | ||||||
| Presentation by Jared Houghtaling: "End-to-End Workflow for Integrating GIS-Specific Data into Patient-Level Prediction Models" | ||||||
|
|
||||||
| ## 8-Jan 2025 | ||||||
| Discussion on ORKs for 2025 | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
|
||||||
| # To join the meeting | ||||||
| [Please use this meeting link](https://nam04.safelinks.protection.outlook.com/ap/t-59584e83/?url=https%3A%2F%2Fteams.microsoft.com%2Fl%2Fmeetup-join%2F19%253ajYxQC7CUsmEGeyr1NfblldusRp3BHD7OO1O5InU-n0k1%2540thread.tacv2%2F1667903573785%3Fcontext%3D%257b%2522Tid%2522%253a%2522a30f0094-9120-4aab-ba4c-e5509023b2d5%2522%252c%2522Oid%2522%253a%25227be9640a-6928-4630-ab41-04daf3afc603%2522%257d&data=05%7C01%7Cjreps%40its.jnj.com%7C68aa07478333476ac2bc08dade7ab590%7C3ac94b33913548219502eafda6592a35%7C0%7C0%7C638066915887283005%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=dT%2FeuDAzBE6riutMZrkOSfRR%2B7GW2cMwZJ5dyARgWKs%3D&reserved=0) | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The link you're sharing is from outlook and has extra stuff in it for security and tracking. I think for a public facing website it's better to use the "pure" link from teams: |
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For me this shows like this:

Is it possible to make the date columns wider ?
Also maybe sort rows by either submission or conference date ?